Index: lan-frontend/src/App.jsx
===================================================================
--- lan-frontend/src/App.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ lan-frontend/src/App.jsx	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
@@ -1,3 +1,3 @@
-import React, {useEffect, useMemo, useState} from "react";
+import React, { useEffect, useMemo, useState } from "react";
 import "./styles/theme.css";
 
@@ -9,233 +9,268 @@
 
 export default function App() {
-    const [stats, setStats] = useState(null);
-    const [computers, setComputers] = useState([]);
-    const [loading, setLoading] = useState(true);
-    const [lastUpdated, setLastUpdated] = useState(null);
-
-    const [query, setQuery] = useState("");
-    const [status, setStatus] = useState("");
-
-    const [selectedComputer, setSelectedComputer] = useState(null);
-    const [aiOpen, setAiOpen] = useState(false);
-    const [aiScope, setAiScope] = useState(null);
-    const [selectedEnv, setSelectedEnv] = useState("default");
-
-    const [me, setMe] = useState(null);
-    const [meLoading, setMeLoading] = useState(true);
-
-    // const [openAI, setOpenAI] = useState(false);
-    // const [scope, setScope] = useState(null);
-
-
-    async function loadMe() {
-        setMeLoading(true);
-        try {
-            const r = await fetch("/api/me", {credentials: "include"});
-            if (r.ok) {
-                const data = await r.json();
-                setMe(data.user);
-            } else {
-                setMe(null);
-            }
-        } catch (e) {
-            console.error("loadMe error", e);
-            setMe(null);
-        } finally {
-            setMeLoading(false);
-        }
-    }
-
-    async function refresh() {
-        try {
-            setLoading(true);
-            const [s, c] = await Promise.all([
-                fetch("/api/stats", {credentials: "include"}).then((r) => r.json()),
-                fetch("/api/computers", {
-                    credentials: "include",
-                    headers: {"X-Env": selectedEnv},
-                }).then((r) => r.json()),
-            ]);
-
-            setStats(s);
-            setComputers(Array.isArray(c) ? c : []);
-            setLastUpdated(new Date().toISOString());
-        } catch (e) {
-            console.error("refresh error", e);
-        } finally {
-            setLoading(false);
-        }
-    }
-
-    // on mount: check session
-    useEffect(() => {
-        loadMe();
-    }, []);
-
-    // when logged in OR env changed, refresh data
-    useEffect(() => {
-        if (me) refresh();
-        // eslint-disable-next-line react-hooks/exhaustive-deps
-    }, [me, selectedEnv]);
-
-    const filtered = useMemo(() => {
-        const q = query.trim().toLowerCase();
-        return (computers || [])
-            .filter((c) => (status ? c.status === status : true))
-            .filter((c) => {
-                if (!q) return true;
-                const hay = [c.name, c.user, c.ip, c.os, c.status]
-                    .filter(Boolean)
-                    .join(" ")
-                    .toLowerCase();
-                return hay.includes(q);
-            });
-    }, [computers, query, status]);
-
-    // Gate UI
-    if (meLoading) return <div style={{padding: 20}}>Loading…</div>;
-    if (!me) return <Login onDone={loadMe}/>;
-
-    return (
-        <div className="app-wrap">
-            <TopBar
-                onOpenAI={() => setAiOpen(true)}
-                onRefresh={refresh}
-                lastUpdated={lastUpdated}
-                onEnvChange={(env) => setSelectedEnv(env)}
-                selectedEnv={selectedEnv}
-                me={me}
-                onLoggedOut={loadMe}
+  const [stats, setStats] = useState(null);
+  const [computers, setComputers] = useState([]);
+  const [loading, setLoading] = useState(true);
+  const [lastUpdated, setLastUpdated] = useState(null);
+
+  const [query, setQuery] = useState("");
+  const [status, setStatus] = useState("");
+
+  const [selectedComputer, setSelectedComputer] = useState(null);
+  const [aiOpen, setAiOpen] = useState(false);
+  const [aiScope, setAiScope] = useState(null);
+  const [selectedEnv, setSelectedEnv] = useState("default");
+
+  const [me, setMe] = useState(null);
+  const [meLoading, setMeLoading] = useState(true);
+
+  // NEW: environment setting (switch)
+  const [saveProcHistory, setSaveProcHistory] = useState(false);
+
+  async function loadMe() {
+    setMeLoading(true);
+    try {
+      const r = await fetch("/api/me", { credentials: "include" });
+      if (r.ok) {
+        const data = await r.json();
+        setMe(data.user);
+      } else {
+        setMe(null);
+      }
+    } catch (e) {
+      console.error("loadMe error", e);
+      setMe(null);
+    } finally {
+      setMeLoading(false);
+    }
+  }
+
+  async function refresh() {
+    try {
+      setLoading(true);
+      const [s, c] = await Promise.all([
+        fetch("/api/stats", { credentials: "include" }).then((r) => r.json()),
+        fetch("/api/computers", {
+          credentials: "include",
+          headers: { "X-Env": selectedEnv },
+        }).then((r) => r.json()),
+      ]);
+
+      setStats(s);
+      setComputers(Array.isArray(c) ? c : []);
+      setLastUpdated(new Date().toISOString());
+    } catch (e) {
+      console.error("refresh error", e);
+    } finally {
+      setLoading(false);
+    }
+  }
+
+  // NEW: load env settings (switch state) for selected env
+  async function loadEnvSettings(env) {
+    try {
+      // само admin ќе има пристап (ако не си admin, ќе падне во else и ќе стане false)
+      const r = await fetch(`/api/admin/env-settings/${encodeURIComponent(env)}`, {
+        credentials: "include",
+      });
+
+      if (r.ok) {
+        const data = await r.json();
+        setSaveProcHistory(!!data.save_process_history);
+      } else {
+        setSaveProcHistory(false);
+      }
+    } catch (e) {
+      console.error("loadEnvSettings error", e);
+      setSaveProcHistory(false);
+    }
+  }
+
+  // NEW: set env setting (toggle)
+  async function setEnvProcessHistory(env, enabled) {
+    // optimistic UI
+    setSaveProcHistory(enabled);
+
+    try {
+      const r = await fetch(`/api/admin/env-settings/${encodeURIComponent(env)}`, {
+        method: "POST",
+        credentials: "include",
+        headers: { "Content-Type": "application/json" },
+        body: JSON.stringify({ save_process_history: enabled }),
+      });
+
+      if (r.ok) {
+        const data = await r.json();
+        setSaveProcHistory(!!data.save_process_history);
+      } else {
+        // rollback
+        setSaveProcHistory(!enabled);
+        console.error("setEnvProcessHistory failed", await r.text());
+      }
+    } catch (e) {
+      setSaveProcHistory(!enabled);
+      console.error("setEnvProcessHistory error", e);
+    }
+  }
+
+  // on mount: check session
+  useEffect(() => {
+    loadMe();
+  }, []);
+
+  // when logged in OR env changed, refresh data + load env switch state
+  useEffect(() => {
+    if (!me) return;
+    loadEnvSettings(selectedEnv);
+    refresh();
+    // eslint-disable-next-line react-hooks/exhaustive-deps
+  }, [me, selectedEnv]);
+
+  const filtered = useMemo(() => {
+    const q = query.trim().toLowerCase();
+    return (computers || [])
+      .filter((c) => (status ? c.status === status : true))
+      .filter((c) => {
+        if (!q) return true;
+        const hay = [c.name, c.user, c.ip, c.os, c.status]
+          .filter(Boolean)
+          .join(" ")
+          .toLowerCase();
+        return hay.includes(q);
+      });
+  }, [computers, query, status]);
+
+  // Gate UI
+  if (meLoading) return <div style={{ padding: 20 }}>Loading…</div>;
+  if (!me) return <Login onDone={loadMe} />;
+
+  return (
+    <div className="app-wrap">
+      <TopBar
+        onOpenAI={() => setAiOpen(true)}
+        onRefresh={refresh}
+        lastUpdated={lastUpdated}
+        onEnvChange={(env) => setSelectedEnv(env)}
+        selectedEnv={selectedEnv}
+        me={me}
+        onLoggedOut={loadMe}
+        // NEW props for switch:
+        saveProcHistory={saveProcHistory}
+        onToggleProcHistory={(enabled) => setEnvProcessHistory(selectedEnv, enabled)}
+      />
+
+      {/* STATS */}
+      <div className="stats-grid">
+        <div className="stat-card">
+          <div className="label">Total Computers</div>
+          <div className="value">{computers.length}</div>
+          <div className="sub">Monitored Systems</div>
+        </div>
+
+        <div className="stat-card">
+          <div className="label">Sysmon Events (24h)</div>
+          <div className="value">{stats?.total_sysmon_events ?? "—"}</div>
+          <div className="sub">Security Events</div>
+        </div>
+
+        <div className="stat-card">
+          <div className="label">Network Connections (24h)</div>
+          <div className="value">{stats?.total_network_connections ?? "—"}</div>
+          <div className="sub">Captured Connections</div>
+        </div>
+      </div>
+
+      {/* FILTERS */}
+      <div className="panel" style={{ marginBottom: 14 }}>
+        <div className="panel-head">
+          <div className="panel-title">Filters</div>
+          <div style={{ color: "var(--dim)", fontSize: 12 }}>
+            {loading ? "Refreshing…" : `${filtered.length} shown`}
+          </div>
+        </div>
+        <div className="panel-body">
+          <div className="filters">
+            <input
+              className="input"
+              value={query}
+              onChange={(e) => setQuery(e.target.value)}
+              placeholder="Search by name / user / ip / os…"
             />
 
-
-            {/* STATS */}
-            <div className="stats-grid">
-                <div className="stat-card">
-                    <div className="label">Total Computers</div>
-                    <div className="value">{computers.length}</div>
-                    <div className="sub">Monitored Systems</div>
-                </div>
-
-                <div className="stat-card">
-                    <div className="label">Sysmon Events (24h)</div>
-                    <div className="value">{stats?.total_sysmon_events ?? "—"}</div>
-                    <div className="sub">Security Events</div>
-                </div>
-
-                <div className="stat-card">
-                    <div className="label">Network Connections (24h)</div>
-                    <div className="value">{stats?.total_network_connections ?? "—"}</div>
-                    <div className="sub">Captured Connections</div>
-                </div>
-            </div>
-
-            {/* FILTERS */}
-            <div className="panel" style={{marginBottom: 14}}>
-                <div className="panel-head">
-                    <div className="panel-title">Filters</div>
-                    <div style={{color: "var(--dim)", fontSize: 12}}>
-                        {loading ? "Refreshing…" : `${filtered.length} shown`}
-                    </div>
-                </div>
-                <div className="panel-body">
-                    <div className="filters">
-                        <input
-                            className="input"
-                            value={query}
-                            onChange={(e) => setQuery(e.target.value)}
-                            placeholder="Search by name / user / ip / os…"
-                        />
-
-                        <select
-                            className="select"
-                            value={status}
-                            onChange={(e) => setStatus(e.target.value)}
-                        >
-                            <option value="">All status</option>
-                            <option value="online">Online</option>
-                            <option value="idle">Idle</option>
-                            <option value="offline">Offline</option>
-                        </select>
-
-                        <button className="btn primary" onClick={refresh}>
-                            Refresh
-                        </button>
-                    </div>
-                </div>
-            </div>
-
-            {/* COMPUTERS */}
-            <div className="panel">
-                <div className="panel-head">
-                    <div className="panel-title">Connected Computers</div>
-                    <div style={{display: "flex", gap: 10, alignItems: "center"}}>
-                        <span className="pill">{filtered.length} computers</span>
-                        <button
-                            className="btn"
-                            onClick={() => {
-                                setQuery("");
-                                setStatus("");
-                            }}
-                        >
-                            Reset
-                        </button>
-                    </div>
-                </div>
-                <div className="panel-body">
-                    <div className="computers-grid">
-                        {filtered.map((c) => (
-                            <ComputerCard
-                                key={c.name}
-                                c={c}
-                                onOpen={(pc) => {
-                                    setSelectedComputer(pc);
-                                    setAiScope(pc.name);
-                                }}
-                            />
-                        ))}
-                        {filtered.length === 0 && (
-                            <div style={{color: "var(--dim)"}}>
-                                No computers match filter.
-                            </div>
-                        )}
-                    </div>
-                </div>
-            </div>
-
-            {/* DETAILS MODAL */}
-            <ComputerDetailsModal
-                open={!!selectedComputer}
-                computer={selectedComputer}
-                onClose={() => setSelectedComputer(null)}
-                onAskAI={(name) => {
-                    setAiScope(name);
-                    setAiOpen(true);
+            <select
+              className="select"
+              value={status}
+              onChange={(e) => setStatus(e.target.value)}
+            >
+              <option value="">All status</option>
+              <option value="online">Online</option>
+              <option value="idle">Idle</option>
+              <option value="offline">Offline</option>
+            </select>
+
+            <button className="btn primary" onClick={refresh}>
+              Refresh
+            </button>
+          </div>
+        </div>
+      </div>
+
+      {/* COMPUTERS */}
+      <div className="panel">
+        <div className="panel-head">
+          <div className="panel-title">Connected Computers</div>
+          <div style={{ display: "flex", gap: 10, alignItems: "center" }}>
+            <span className="pill">{filtered.length} computers</span>
+            <button
+              className="btn"
+              onClick={() => {
+                setQuery("");
+                setStatus("");
+              }}
+            >
+              Reset
+            </button>
+          </div>
+        </div>
+        <div className="panel-body">
+          <div className="computers-grid">
+            {filtered.map((c) => (
+              <ComputerCard
+                key={c.name}
+                c={c}
+                onOpen={(pc) => {
+                  setSelectedComputer(pc);
+                  setAiScope(pc.name);
                 }}
-            />
-
-            {/* AI DRAWER */}
-            {/*<button onClick={() => setOpenAI(true)}>AI</button>*/}
-
-            {/*<AIAssistantDrawer*/}
-            {/*    open={openAI}*/}
-            {/*    onClose={() => setOpenAI(false)}*/}
-            {/*    computers={computers}*/}
-            {/*    scope={scope}*/}
-            {/*    setScope={setScope}*/}
-            {/*    apiBase={import.meta.env.VITE_API_BASE}*/}
-            {/*/>*/}
-
-            <AIAssistantDrawer
-                open={aiOpen}
-                onClose={() => setAiOpen(false)}
-                computers={computers}
-                scope={aiScope}
-                setScope={setAiScope}
-                apiBase={import.meta.env.VITE_API_BASE}
-            />
-
-
-        </div>
-    );
+              />
+            ))}
+            {filtered.length === 0 && (
+              <div style={{ color: "var(--dim)" }}>No computers match filter.</div>
+            )}
+          </div>
+        </div>
+      </div>
+
+      {/* DETAILS MODAL */}
+      <ComputerDetailsModal
+        open={!!selectedComputer}
+        computer={selectedComputer}
+        onClose={() => setSelectedComputer(null)}
+        onAskAI={(name) => {
+          setAiScope(name);
+          setAiOpen(true);
+        }}
+      />
+
+      {/* AI DRAWER */}
+      <AIAssistantDrawer
+        open={aiOpen}
+        onClose={() => setAiOpen(false)}
+        computers={computers}
+        scope={aiScope}
+        setScope={setAiScope}
+        apiBase={import.meta.env.VITE_API_BASE}
+      />
+    </div>
+  );
 }
Index: lan-frontend/src/components/AIAssistantDrawer.jsx
===================================================================
--- lan-frontend/src/components/AIAssistantDrawer.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ lan-frontend/src/components/AIAssistantDrawer.jsx	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
@@ -55,16 +55,28 @@
 
             const data = await r.json().catch(() => ({}));
+            // if (!r.ok) {
+            //     setMessages((m) => [...m, {
+            //         role: "assistant",
+            //         text: `Error ${r.status}: ${data.error || "Request failed"}`
+            //     }]);
+            // } else {
+            //     setMessages((m) => [...m, {role: "assistant", text: data.answer || "(no answer)"}]);
+            // }
+            // setMessages((m) => [
+            //     ...m,
+            //     {role: "assistant", text: data.answer || "(no answer)"},
+            // ]);
             if (!r.ok) {
-                setMessages((m) => [...m, {
-                    role: "assistant",
-                    text: `Error ${r.status}: ${data.error || "Request failed"}`
-                }]);
+                setMessages((m) => [
+                    ...m,
+                    {role: "assistant", text: `Error ${r.status}: ${data.error || "Request failed"}`},
+                ]);
             } else {
-                setMessages((m) => [...m, {role: "assistant", text: data.answer || "(no answer)"}]);
+                setMessages((m) => [
+                    ...m,
+                    {role: "assistant", text: data.answer || "(no answer)"},
+                ]);
             }
-            setMessages((m) => [
-                ...m,
-                {role: "assistant", text: data.answer || "(no answer)"},
-            ]);
+
         } catch (e) {
             setMessages((m) => [
Index: lan-frontend/src/components/TopBar.jsx
===================================================================
--- lan-frontend/src/components/TopBar.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ lan-frontend/src/components/TopBar.jsx	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
@@ -1,4 +1,4 @@
 import React, { useEffect, useMemo, useState } from "react";
-import logo from "../assets/ChatGPT_Image_Jan_21__2026__01_20_04_PM-removebg-preview (1).png";
+import logo from "../assets/logo_image.png";
 
 export default function TopBar({
@@ -10,4 +10,8 @@
   me,
   onLoggedOut, // optional callback (App loadMe)
+
+  // NEW: process history switch (controlled by App)
+  saveProcHistory = false,
+  onToggleProcHistory, // (enabled:boolean) => void
 }) {
   const [open, setOpen] = useState(false);
@@ -22,4 +26,5 @@
   const [error, setError] = useState("");
 
+  const isAdmin = (me?.role || "").toLowerCase() === "admin";
 
   // keep in sync ако App праќа selectedEnv prop
@@ -146,12 +151,4 @@
         .tb-inner{ max-width: 1200px; margin: 0 auto; padding: 14px 18px;
           display: flex; align-items: center; justify-content: space-between; gap: 14px; }
-        .tb-brand{ display:flex; align-items:center; gap: 12px; min-width: 260px; }
-        .tb-badge{ width: 44px; height: 44px; border-radius: 14px; display:flex; align-items:center; justify-content:center;
-          background: radial-gradient(120px 80px at 30% 20%, rgba(96,165,250,0.55), transparent 60%),
-                      linear-gradient(135deg, rgba(30,64,175,0.75), rgba(15,23,42,0.85));
-          border: 1px solid rgba(96,165,250,0.25); box-shadow: 0 10px 25px rgba(0,0,0,0.25); }
-        .tb-title{ margin:0; font-size: 16px; font-weight: 900; letter-spacing: 0.4px; color: rgba(255,255,255,0.95); line-height: 1.2; }
-        .tb-sub{ margin: 2px 0 0 0; font-size: 12px; color: rgba(191,219,254,0.85); }
-        .tb-sub span{ color: rgba(96,165,250,0.95); font-weight: 800; }
         .tb-actions{ display:flex; align-items:center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
         .tb-pill{ display:inline-flex; align-items:center; gap: 8px; padding: 8px 12px; border-radius: 999px;
@@ -169,4 +166,16 @@
           border-color: rgba(147,197,253,0.35); color: rgba(5,12,24,0.95); }
         .tb-btn.primary:hover{ background: linear-gradient(135deg, rgba(59,130,246,0.95), rgba(34,211,238,0.75)); }
+
+        .tb-switch{ display:flex; align-items:center; gap:10px; padding: 8px 12px; border-radius: 999px;
+          background: rgba(15,23,42,0.55); border: 1px solid rgba(96,165,250,0.22);
+          color: rgba(255,255,255,0.9); font-weight: 800; font-size: 12px; }
+        .tb-switch .label{ color: rgba(191,219,254,0.9); }
+        .tb-toggle{ width: 46px; height: 26px; border-radius: 999px; position: relative; border: 1px solid rgba(96,165,250,0.25);
+          background: rgba(30,41,59,0.65); cursor: pointer; transition: background .12s ease, opacity .12s ease; }
+        .tb-toggle.disabled{ opacity: .55; cursor: not-allowed; }
+        .tb-knob{ width: 22px; height: 22px; border-radius: 999px; position: absolute; top: 1px; left: 1px;
+          background: rgba(226,232,240,0.95); transition: transform .14s ease; box-shadow: 0 6px 14px rgba(0,0,0,0.22); }
+        .tb-toggle.on{ background: rgba(37,99,235,0.85); border-color: rgba(147,197,253,0.45); }
+        .tb-toggle.on .tb-knob{ transform: translateX(20px); }
 
         .tb-backdrop{ position: fixed; inset: 0; background: rgba(2,6,23,0.72); backdrop-filter: blur(6px);
@@ -202,39 +211,61 @@
       <div className="tb-wrap">
         <div className="tb-inner">
-          <div className="tb-brand">
-            <div className="tb-badge">🛡️</div>
-            <div>
-              <h1 className="tb-title">LAN Security Monitor</h1>
-              <p className="tb-sub">
-                Sysmon Edition • <span>{prettyTime}</span>
-              </p>
-              {me?.email && (
-                <p className="tb-sub" style={{ marginTop: 4, opacity: 0.9 }}>
-                  Signed in as <span>{me.email}</span>
-                  {me.role ? ` • ${me.role}` : ""}
-                </p>
-              )}
+          <div>
+            <img
+              src={logo}
+              alt="NETIntel logo"
+              className="netintel-logo"
+              width={150}
+              style={{ marginTop: 10 }}
+            />
+            <div style={{ marginTop: 4, fontSize: 12, color: "rgba(191,219,254,0.8)", fontWeight: 800 }}>
+              <span style={{ color: "rgba(96,165,250,0.95)" }}>{prettyTime}</span>
+              {me?.email ? (
+                <span style={{ marginLeft: 10 }}>
+                  • {me.email}
+                  {me?.role ? ` • ${me.role}` : ""}
+                </span>
+              ) : null}
             </div>
           </div>
-          <div>
-            <img
-                src={logo}
-                alt="NETIntel logo"
-                className="netintel-logo"
-                width={150}
-                style={{marginTop: 10 }}
-            />
-          </div>
-
-
 
           <div className="tb-actions">
-            <span className="tb-pill">
+            <span className="tb-pill" title="Selected environment">
               <span className="dot" />
               Env: {selectedEnv}
             </span>
+
+            {/* NEW: Save process history switch */}
+            <div className="tb-switch" title={isAdmin ? "Toggle saving process history for this environment" : "Only admin can change this"}>
+              <span className="label">Proc history</span>
+              <div
+                className={[
+                  "tb-toggle",
+                  saveProcHistory ? "on" : "",
+                  !isAdmin ? "disabled" : "",
+                ].join(" ")}
+                role="switch"
+                aria-checked={saveProcHistory ? "true" : "false"}
+                tabIndex={0}
+                onClick={() => {
+                  if (!isAdmin) return;
+                  onToggleProcHistory?.(!saveProcHistory);
+                }}
+                onKeyDown={(e) => {
+                  if (!isAdmin) return;
+                  if (e.key === "Enter" || e.key === " ") {
+                    e.preventDefault();
+                    onToggleProcHistory?.(!saveProcHistory);
+                  }
+                }}
+              >
+                <div className="tb-knob" />
+              </div>
+            </div>
+
             <button className="tb-btn" onClick={onRefresh} disabled={busy}>
               Refresh
             </button>
+
             <button
               className="tb-btn"
@@ -252,4 +283,5 @@
               Admin
             </button>
+
             <button className="tb-btn primary" onClick={onOpenAI}>
               AI Assistant
@@ -298,4 +330,6 @@
                   <div className="tb-help">
                     Овој env ќе се користи за dashboard филтрирање + token generation.
+                    <br />
+                    <b>Proc history</b> switch горе важи за тековниот env.
                   </div>
                 </div>
Index: received_data_sysmon/Ilina-laptop/20260122_10.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260122_10.json	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
+++ received_data_sysmon/Ilina-laptop/20260122_10.json	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
@@ -0,0 +1,11702 @@
+[
+  {
+    "timestamp": "2026-01-22T10:00:47.878055",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:00:47.878055",
+      "is_sysmon_available": false,
+      "cpu_usage": 27.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.25,
+      "swap_usage": 16.4,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.79,
+      "disk_read_mb": 159011.62,
+      "disk_write_mb": 156381.26,
+      "network_sent_mb": 6.33,
+      "network_recv_mb": 89.97,
+      "network_packets_sent": 27260,
+      "network_packets_recv": 91474,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.79,
+          "free_gb": 172.15,
+          "percent_used": 63.8
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 64,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:01:24.056651",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:01:24.056651",
+      "is_sysmon_available": false,
+      "cpu_usage": 34.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.85,
+      "swap_usage": 16.4,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.83,
+      "disk_read_mb": 159549.51,
+      "disk_write_mb": 156540.75,
+      "network_sent_mb": 6.69,
+      "network_recv_mb": 91.04,
+      "network_packets_sent": 27840,
+      "network_packets_recv": 94108,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.83,
+          "free_gb": 172.1,
+          "percent_used": 63.8
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:01:59.940213",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:01:59.940213",
+      "is_sysmon_available": false,
+      "cpu_usage": 71.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.36,
+      "swap_usage": 16.1,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.83,
+      "disk_read_mb": 159721.89,
+      "disk_write_mb": 156959.81,
+      "network_sent_mb": 6.75,
+      "network_recv_mb": 91.38,
+      "network_packets_sent": 28045,
+      "network_packets_recv": 96182,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.83,
+          "free_gb": 172.11,
+          "percent_used": 63.8
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 63,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:02:44.911948",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:02:44.911948",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.33,
+      "swap_usage": 16.1,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.84,
+      "disk_read_mb": 159787.9,
+      "disk_write_mb": 157020.33,
+      "network_sent_mb": 6.82,
+      "network_recv_mb": 91.81,
+      "network_packets_sent": 28270,
+      "network_packets_recv": 98720,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.84,
+          "free_gb": 172.1,
+          "percent_used": 63.8
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:03:25.172267",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:03:25.172267",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.31,
+      "swap_usage": 16.1,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.86,
+      "disk_read_mb": 159808.01,
+      "disk_write_mb": 157070.92,
+      "network_sent_mb": 6.86,
+      "network_recv_mb": 92.16,
+      "network_packets_sent": 28473,
+      "network_packets_recv": 100985,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.86,
+          "free_gb": 172.08,
+          "percent_used": 63.8
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:04:00.727164",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:04:00.727164",
+      "is_sysmon_available": false,
+      "cpu_usage": 30.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.24,
+      "swap_usage": 16.1,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.87,
+      "disk_read_mb": 159831.38,
+      "disk_write_mb": 157116.48,
+      "network_sent_mb": 7.06,
+      "network_recv_mb": 92.91,
+      "network_packets_sent": 28817,
+      "network_packets_recv": 103202,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.87,
+          "free_gb": 172.06,
+          "percent_used": 63.8
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 62,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:04:36.443924",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:04:36.443924",
+      "is_sysmon_available": false,
+      "cpu_usage": 25.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 78.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.25,
+      "swap_usage": 16.1,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.88,
+      "disk_read_mb": 159858.69,
+      "disk_write_mb": 157132.04,
+      "network_sent_mb": 7.17,
+      "network_recv_mb": 94.14,
+      "network_packets_sent": 29431,
+      "network_packets_recv": 105742,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.88,
+          "free_gb": 172.06,
+          "percent_used": 63.8
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:05:16.623878",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:05:16.623878",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.43,
+      "swap_usage": 16.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159906.4,
+      "disk_write_mb": 157179.98,
+      "network_sent_mb": 7.43,
+      "network_recv_mb": 94.57,
+      "network_packets_sent": 31191,
+      "network_packets_recv": 107630,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.05,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 61,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:05:57.139711",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:05:57.139711",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.38,
+      "swap_usage": 16.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159910.54,
+      "disk_write_mb": 157200.69,
+      "network_sent_mb": 7.69,
+      "network_recv_mb": 94.94,
+      "network_packets_sent": 33497,
+      "network_packets_recv": 110028,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.05,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:06:37.266009",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:06:37.266009",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.21,
+      "swap_usage": 16.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159911.24,
+      "disk_write_mb": 157216.69,
+      "network_sent_mb": 7.93,
+      "network_recv_mb": 95.3,
+      "network_packets_sent": 35727,
+      "network_packets_recv": 112375,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.05,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 60,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:07:17.003160",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:07:17.003160",
+      "is_sysmon_available": false,
+      "cpu_usage": 44.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.28,
+      "swap_usage": 16.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159916.03,
+      "disk_write_mb": 157235.48,
+      "network_sent_mb": 8.35,
+      "network_recv_mb": 95.79,
+      "network_packets_sent": 38254,
+      "network_packets_recv": 114981,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 195.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.05,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:07:56.715190",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:07:56.715190",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.34,
+      "swap_usage": 16.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159916.53,
+      "disk_write_mb": 157247.65,
+      "network_sent_mb": 8.74,
+      "network_recv_mb": 96.23,
+      "network_packets_sent": 40968,
+      "network_packets_recv": 117935,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.05,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 59,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:08:33.112039",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:08:33.112039",
+      "is_sysmon_available": false,
+      "cpu_usage": 72.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.46,
+      "swap_usage": 16.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159934.37,
+      "disk_write_mb": 157272.01,
+      "network_sent_mb": 9.0,
+      "network_recv_mb": 96.65,
+      "network_packets_sent": 43161,
+      "network_packets_recv": 120252,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.05,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:09:13.228203",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:09:13.228203",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.09,
+      "swap_usage": 16.2,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159934.68,
+      "disk_write_mb": 157319.85,
+      "network_sent_mb": 9.24,
+      "network_recv_mb": 97.02,
+      "network_packets_sent": 45404,
+      "network_packets_recv": 122599,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.05,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:09:53.045486",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:09:53.045486",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.14,
+      "swap_usage": 16.2,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159934.78,
+      "disk_write_mb": 157331.58,
+      "network_sent_mb": 9.48,
+      "network_recv_mb": 97.39,
+      "network_packets_sent": 47661,
+      "network_packets_recv": 124937,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.03,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 58,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:10:32.848414",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:10:32.848414",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.03,
+      "swap_usage": 16.2,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.89,
+      "disk_read_mb": 159938.52,
+      "disk_write_mb": 157345.04,
+      "network_sent_mb": 9.7,
+      "network_recv_mb": 97.74,
+      "network_packets_sent": 49837,
+      "network_packets_recv": 127194,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.04,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.89,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:11:08.950888",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:11:08.950888",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.04,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 159941.69,
+      "disk_write_mb": 157393.41,
+      "network_sent_mb": 10.18,
+      "network_recv_mb": 98.47,
+      "network_packets_sent": 52308,
+      "network_packets_recv": 129676,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 57,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:11:48.515504",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:11:48.515504",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.91,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 159943.63,
+      "disk_write_mb": 157406.13,
+      "network_sent_mb": 10.42,
+      "network_recv_mb": 98.83,
+      "network_packets_sent": 54545,
+      "network_packets_recv": 131974,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:12:27.890699",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:12:27.890699",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.92,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 159944.2,
+      "disk_write_mb": 157417.59,
+      "network_sent_mb": 10.64,
+      "network_recv_mb": 99.18,
+      "network_packets_sent": 56728,
+      "network_packets_recv": 134241,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.07,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 56,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:13:07.372214",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:13:07.372214",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.92,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 159944.28,
+      "disk_write_mb": 157427.64,
+      "network_sent_mb": 10.89,
+      "network_recv_mb": 99.58,
+      "network_packets_sent": 58995,
+      "network_packets_recv": 136606,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:13:46.771281",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:13:46.771281",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.92,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 159944.31,
+      "disk_write_mb": 157438.36,
+      "network_sent_mb": 11.11,
+      "network_recv_mb": 99.93,
+      "network_packets_sent": 61151,
+      "network_packets_recv": 138846,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:14:26.114656",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:14:26.114656",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.7,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 159944.82,
+      "disk_write_mb": 157451.49,
+      "network_sent_mb": 11.33,
+      "network_recv_mb": 100.28,
+      "network_packets_sent": 63341,
+      "network_packets_recv": 141126,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 55,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:15:05.339500",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:15:05.339500",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.77,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 159945.01,
+      "disk_write_mb": 157463.07,
+      "network_sent_mb": 11.61,
+      "network_recv_mb": 100.65,
+      "network_packets_sent": 65605,
+      "network_packets_recv": 143433,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:15:44.620152",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:15:44.620152",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.75,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 159945.06,
+      "disk_write_mb": 157473.59,
+      "network_sent_mb": 11.85,
+      "network_recv_mb": 101.01,
+      "network_packets_sent": 67799,
+      "network_packets_recv": 145723,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 54,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:17:13.851156",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:17:13.851156",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.46,
+      "swap_usage": 16.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 160117.47,
+      "disk_write_mb": 157511.67,
+      "network_sent_mb": 12.6,
+      "network_recv_mb": 102.55,
+      "network_packets_sent": 71112,
+      "network_packets_recv": 150027,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:17:53.883352",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:17:53.883352",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.11,
+      "swap_usage": 16.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 160118.78,
+      "disk_write_mb": 157534.32,
+      "network_sent_mb": 12.68,
+      "network_recv_mb": 102.93,
+      "network_packets_sent": 71322,
+      "network_packets_recv": 152419,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 53,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:18:33.499873",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:18:33.499873",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.07,
+      "swap_usage": 16.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 160119.26,
+      "disk_write_mb": 157549.15,
+      "network_sent_mb": 12.71,
+      "network_recv_mb": 103.29,
+      "network_packets_sent": 71468,
+      "network_packets_recv": 154695,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:19:12.829427",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:19:12.829427",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.0,
+      "swap_usage": 16.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 160119.5,
+      "disk_write_mb": 157565.47,
+      "network_sent_mb": 12.82,
+      "network_recv_mb": 103.71,
+      "network_packets_sent": 71792,
+      "network_packets_recv": 157091,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:19:51.714606",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:19:51.714606",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.99,
+      "swap_usage": 16.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 160119.7,
+      "disk_write_mb": 157575.1,
+      "network_sent_mb": 12.86,
+      "network_recv_mb": 104.06,
+      "network_packets_sent": 71940,
+      "network_packets_recv": 159314,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 52,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:20:30.541590",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:20:30.541590",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.99,
+      "swap_usage": 16.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 160128.31,
+      "disk_write_mb": 157585.74,
+      "network_sent_mb": 12.89,
+      "network_recv_mb": 104.38,
+      "network_packets_sent": 72044,
+      "network_packets_recv": 161511,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.9,
+          "free_gb": 172.04,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:21:10.336631",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:21:10.336631",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.76,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.91,
+      "disk_read_mb": 160129.89,
+      "disk_write_mb": 157621.29,
+      "network_sent_mb": 13.24,
+      "network_recv_mb": 121.14,
+      "network_packets_sent": 77452,
+      "network_packets_recv": 169590,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.91,
+          "free_gb": 172.02,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 51,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:21:49.395972",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:21:49.395972",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.76,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.99,
+      "disk_read_mb": 160130.8,
+      "disk_write_mb": 157683.09,
+      "network_sent_mb": 14.11,
+      "network_recv_mb": 168.55,
+      "network_packets_sent": 92574,
+      "network_packets_recv": 188404,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.99,
+          "free_gb": 171.95,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:22:27.242667",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:22:27.242667",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.62,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160708.64,
+      "disk_write_mb": 159431.13,
+      "network_sent_mb": 14.15,
+      "network_recv_mb": 168.64,
+      "network_packets_sent": 92711,
+      "network_packets_recv": 188852,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:23:05.716866",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:23:05.716866",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.61,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160709.45,
+      "disk_write_mb": 159443.66,
+      "network_sent_mb": 14.19,
+      "network_recv_mb": 168.69,
+      "network_packets_sent": 92862,
+      "network_packets_recv": 189043,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 50,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:23:44.138566",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:23:44.138566",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.63,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160713.59,
+      "disk_write_mb": 159457.79,
+      "network_sent_mb": 14.25,
+      "network_recv_mb": 168.76,
+      "network_packets_sent": 93012,
+      "network_packets_recv": 189250,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:24:22.597284",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:24:22.597284",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.52,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160725.4,
+      "disk_write_mb": 159508.6,
+      "network_sent_mb": 14.29,
+      "network_recv_mb": 168.8,
+      "network_packets_sent": 93120,
+      "network_packets_recv": 189405,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:25:01.136769",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:25:01.136769",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.57,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160726.05,
+      "disk_write_mb": 159522.06,
+      "network_sent_mb": 14.32,
+      "network_recv_mb": 168.84,
+      "network_packets_sent": 93241,
+      "network_packets_recv": 189569,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 49,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:25:39.725777",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:25:39.725777",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.56,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160726.87,
+      "disk_write_mb": 159532.86,
+      "network_sent_mb": 14.41,
+      "network_recv_mb": 168.91,
+      "network_packets_sent": 93435,
+      "network_packets_recv": 189806,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:26:18.187422",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:26:18.187422",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.5,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160727.14,
+      "disk_write_mb": 159542.85,
+      "network_sent_mb": 14.44,
+      "network_recv_mb": 168.95,
+      "network_packets_sent": 93547,
+      "network_packets_recv": 189977,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:26:56.515115",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:26:56.515115",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.51,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160727.21,
+      "disk_write_mb": 159551.51,
+      "network_sent_mb": 14.47,
+      "network_recv_mb": 168.99,
+      "network_packets_sent": 93662,
+      "network_packets_recv": 190138,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 48,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:27:34.979077",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:27:34.979077",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.51,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160727.48,
+      "disk_write_mb": 159560.71,
+      "network_sent_mb": 14.52,
+      "network_recv_mb": 169.04,
+      "network_packets_sent": 93799,
+      "network_packets_recv": 190343,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:28:13.352727",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:28:13.352727",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.51,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160727.54,
+      "disk_write_mb": 159570.52,
+      "network_sent_mb": 14.57,
+      "network_recv_mb": 169.11,
+      "network_packets_sent": 93944,
+      "network_packets_recv": 190561,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:28:51.870977",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:28:51.870977",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.51,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160727.64,
+      "disk_write_mb": 159578.87,
+      "network_sent_mb": 14.59,
+      "network_recv_mb": 169.15,
+      "network_packets_sent": 94038,
+      "network_packets_recv": 190716,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:29:30.251208",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:29:30.251208",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.41,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160727.71,
+      "disk_write_mb": 159587.03,
+      "network_sent_mb": 14.63,
+      "network_recv_mb": 169.2,
+      "network_packets_sent": 94158,
+      "network_packets_recv": 190913,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 47,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:30:09.032085",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:30:09.032085",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.46,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160727.77,
+      "disk_write_mb": 159597.96,
+      "network_sent_mb": 14.68,
+      "network_recv_mb": 169.26,
+      "network_packets_sent": 94293,
+      "network_packets_recv": 191118,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:30:47.500833",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:30:47.500833",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.39,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160728.02,
+      "disk_write_mb": 159607.96,
+      "network_sent_mb": 14.72,
+      "network_recv_mb": 169.31,
+      "network_packets_sent": 94425,
+      "network_packets_recv": 191301,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:31:25.941847",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:31:25.941847",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.36,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160728.39,
+      "disk_write_mb": 159618.42,
+      "network_sent_mb": 14.75,
+      "network_recv_mb": 169.35,
+      "network_packets_sent": 94515,
+      "network_packets_recv": 191449,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 46,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:32:04.351881",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:32:04.351881",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.36,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160728.59,
+      "disk_write_mb": 159628.03,
+      "network_sent_mb": 14.78,
+      "network_recv_mb": 169.39,
+      "network_packets_sent": 94628,
+      "network_packets_recv": 191636,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:32:42.681740",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:32:42.681740",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.37,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160728.99,
+      "disk_write_mb": 159637.92,
+      "network_sent_mb": 14.83,
+      "network_recv_mb": 169.46,
+      "network_packets_sent": 94756,
+      "network_packets_recv": 191856,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:33:20.949585",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:33:20.949585",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.37,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160730.81,
+      "disk_write_mb": 159647.88,
+      "network_sent_mb": 14.86,
+      "network_recv_mb": 169.66,
+      "network_packets_sent": 94890,
+      "network_packets_recv": 192141,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 45,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:33:59.210498",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:33:59.210498",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.35,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160730.87,
+      "disk_write_mb": 159658.85,
+      "network_sent_mb": 14.9,
+      "network_recv_mb": 169.71,
+      "network_packets_sent": 95035,
+      "network_packets_recv": 192342,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:34:37.515161",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:34:37.515161",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.22,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160730.94,
+      "disk_write_mb": 159670.53,
+      "network_sent_mb": 14.94,
+      "network_recv_mb": 169.77,
+      "network_packets_sent": 95155,
+      "network_packets_recv": 192527,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:35:15.945513",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:35:15.945513",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.28,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160731.19,
+      "disk_write_mb": 159680.58,
+      "network_sent_mb": 14.99,
+      "network_recv_mb": 169.82,
+      "network_packets_sent": 95298,
+      "network_packets_recv": 192710,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 44,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:35:54.395865",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:35:54.395865",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.28,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160732.05,
+      "disk_write_mb": 159690.7,
+      "network_sent_mb": 15.08,
+      "network_recv_mb": 169.98,
+      "network_packets_sent": 95510,
+      "network_packets_recv": 192967,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:36:32.716007",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:36:32.716007",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.29,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160733.38,
+      "disk_write_mb": 159700.4,
+      "network_sent_mb": 15.11,
+      "network_recv_mb": 170.02,
+      "network_packets_sent": 95639,
+      "network_packets_recv": 193141,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:37:11.051145",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:37:11.051145",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.43,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160743.54,
+      "disk_write_mb": 159714.57,
+      "network_sent_mb": 15.18,
+      "network_recv_mb": 170.42,
+      "network_packets_sent": 95900,
+      "network_packets_recv": 193616,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 43,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:37:49.748884",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:37:49.748884",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.31,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160743.96,
+      "disk_write_mb": 159728.79,
+      "network_sent_mb": 15.21,
+      "network_recv_mb": 170.45,
+      "network_packets_sent": 96006,
+      "network_packets_recv": 193772,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:38:28.738476",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:38:28.738476",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.34,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160744.6,
+      "disk_write_mb": 159739.6,
+      "network_sent_mb": 15.26,
+      "network_recv_mb": 170.51,
+      "network_packets_sent": 96160,
+      "network_packets_recv": 193957,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:39:07.426811",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:39:07.426811",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.4,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160744.88,
+      "disk_write_mb": 159748.56,
+      "network_sent_mb": 15.32,
+      "network_recv_mb": 170.63,
+      "network_packets_sent": 96354,
+      "network_packets_recv": 194256,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.61,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 42,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:39:46.410864",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:39:46.410864",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.22,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160745.07,
+      "disk_write_mb": 159759.05,
+      "network_sent_mb": 15.37,
+      "network_recv_mb": 170.69,
+      "network_packets_sent": 96516,
+      "network_packets_recv": 194495,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:40:24.891705",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:40:24.891705",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.2,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.33,
+      "disk_read_mb": 160746.2,
+      "disk_write_mb": 159770.31,
+      "network_sent_mb": 15.4,
+      "network_recv_mb": 170.73,
+      "network_packets_sent": 96618,
+      "network_packets_recv": 194651,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.33,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:41:03.390022",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:41:03.390022",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.22,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160759.4,
+      "disk_write_mb": 159793.81,
+      "network_sent_mb": 15.6,
+      "network_recv_mb": 171.01,
+      "network_packets_sent": 97091,
+      "network_packets_recv": 195217,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 41,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:41:42.088457",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:41:42.088457",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.13,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160759.71,
+      "disk_write_mb": 159811.24,
+      "network_sent_mb": 15.67,
+      "network_recv_mb": 171.13,
+      "network_packets_sent": 97322,
+      "network_packets_recv": 195534,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.56,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:42:20.690566",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:42:20.690566",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.92,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160759.9,
+      "disk_write_mb": 159820.46,
+      "network_sent_mb": 15.7,
+      "network_recv_mb": 171.17,
+      "network_packets_sent": 97455,
+      "network_packets_recv": 195722,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.57,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:42:59.152564",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:42:59.152564",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.94,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160760.27,
+      "disk_write_mb": 159828.8,
+      "network_sent_mb": 15.75,
+      "network_recv_mb": 171.22,
+      "network_packets_sent": 97619,
+      "network_packets_recv": 195935,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.58,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 40,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:43:37.710197",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:43:37.710197",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.97,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160761.41,
+      "disk_write_mb": 159843.85,
+      "network_sent_mb": 15.79,
+      "network_recv_mb": 171.27,
+      "network_packets_sent": 97745,
+      "network_packets_recv": 196124,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.59,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:44:16.037502",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:44:16.037502",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 69.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.93,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160761.47,
+      "disk_write_mb": 159855.97,
+      "network_sent_mb": 15.82,
+      "network_recv_mb": 171.31,
+      "network_packets_sent": 97842,
+      "network_packets_recv": 196280,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.6,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:44:54.440004",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:44:54.440004",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.0,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160761.96,
+      "disk_write_mb": 159866.83,
+      "network_sent_mb": 15.9,
+      "network_recv_mb": 171.4,
+      "network_packets_sent": 98046,
+      "network_packets_recv": 196547,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.61,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:45:33.030227",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:45:33.030227",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.02,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160762.09,
+      "disk_write_mb": 159877.6,
+      "network_sent_mb": 15.93,
+      "network_recv_mb": 171.44,
+      "network_packets_sent": 98158,
+      "network_packets_recv": 196714,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.62,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 39,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:46:11.685152",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:46:11.685152",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.98,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160762.22,
+      "disk_write_mb": 159888.81,
+      "network_sent_mb": 15.99,
+      "network_recv_mb": 171.51,
+      "network_packets_sent": 98306,
+      "network_packets_recv": 196942,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.64,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:46:50.095578",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:46:50.095578",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.98,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160762.56,
+      "disk_write_mb": 159897.56,
+      "network_sent_mb": 16.04,
+      "network_recv_mb": 171.56,
+      "network_packets_sent": 98469,
+      "network_packets_recv": 197109,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.65,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:47:28.608747",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:47:28.608747",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.02,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160762.56,
+      "disk_write_mb": 159906.88,
+      "network_sent_mb": 16.08,
+      "network_recv_mb": 171.62,
+      "network_packets_sent": 98626,
+      "network_packets_recv": 197325,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.66,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 38,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:48:07.193658",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:48:07.193658",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.99,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160762.7,
+      "disk_write_mb": 159916.54,
+      "network_sent_mb": 16.13,
+      "network_recv_mb": 171.68,
+      "network_packets_sent": 98760,
+      "network_packets_recv": 197535,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.67,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:48:45.859967",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:48:45.859967",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.99,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160763.62,
+      "disk_write_mb": 159924.8,
+      "network_sent_mb": 16.18,
+      "network_recv_mb": 171.73,
+      "network_packets_sent": 98887,
+      "network_packets_recv": 197706,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.68,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:49:24.187305",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:49:24.187305",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.81,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160763.77,
+      "disk_write_mb": 159939.51,
+      "network_sent_mb": 16.21,
+      "network_recv_mb": 171.77,
+      "network_packets_sent": 99010,
+      "network_packets_recv": 197886,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.69,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 37,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:50:02.537710",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:50:02.537710",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.88,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160764.97,
+      "disk_write_mb": 159950.87,
+      "network_sent_mb": 16.26,
+      "network_recv_mb": 171.84,
+      "network_packets_sent": 99190,
+      "network_packets_recv": 198125,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.7,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:50:41.201902",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:50:41.201902",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.33,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160769.22,
+      "disk_write_mb": 159967.46,
+      "network_sent_mb": 16.55,
+      "network_recv_mb": 172.69,
+      "network_packets_sent": 101031,
+      "network_packets_recv": 200216,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.71,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 36,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:51:20.670121",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:51:20.670121",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.02,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160769.27,
+      "disk_write_mb": 159976.96,
+      "network_sent_mb": 16.77,
+      "network_recv_mb": 173.04,
+      "network_packets_sent": 103209,
+      "network_packets_recv": 202486,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.72,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:52:00.088716",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:52:00.088716",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.06,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160770.07,
+      "disk_write_mb": 159987.44,
+      "network_sent_mb": 17.03,
+      "network_recv_mb": 173.46,
+      "network_packets_sent": 105482,
+      "network_packets_recv": 204882,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.73,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:52:39.278708",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:52:39.278708",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.02,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160770.27,
+      "disk_write_mb": 159998.29,
+      "network_sent_mb": 17.26,
+      "network_recv_mb": 173.83,
+      "network_packets_sent": 107667,
+      "network_packets_recv": 207163,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.74,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 35,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:53:18.433743",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:53:18.433743",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.21,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160771.76,
+      "disk_write_mb": 160011.83,
+      "network_sent_mb": 17.51,
+      "network_recv_mb": 174.4,
+      "network_packets_sent": 109980,
+      "network_packets_recv": 209661,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:53:57.743164",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:53:57.743164",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.11,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160771.98,
+      "disk_write_mb": 160023.0,
+      "network_sent_mb": 17.75,
+      "network_recv_mb": 174.77,
+      "network_packets_sent": 112189,
+      "network_packets_recv": 211947,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:54:37.052044",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:54:37.052044",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.0,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160772.23,
+      "disk_write_mb": 160035.03,
+      "network_sent_mb": 17.98,
+      "network_recv_mb": 175.14,
+      "network_packets_sent": 114383,
+      "network_packets_recv": 214246,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 33,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:55:16.515736",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:55:16.515736",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.02,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160772.83,
+      "disk_write_mb": 160047.12,
+      "network_sent_mb": 18.22,
+      "network_recv_mb": 175.55,
+      "network_packets_sent": 116621,
+      "network_packets_recv": 216595,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.79,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 33,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:55:55.811531",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:55:55.811531",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.03,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160773.08,
+      "disk_write_mb": 160059.46,
+      "network_sent_mb": 18.47,
+      "network_recv_mb": 175.93,
+      "network_packets_sent": 118840,
+      "network_packets_recv": 218902,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 32,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:56:35.243328",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:56:35.243328",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 69.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.91,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160773.25,
+      "disk_write_mb": 160071.02,
+      "network_sent_mb": 18.69,
+      "network_recv_mb": 176.27,
+      "network_packets_sent": 121020,
+      "network_packets_recv": 221161,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 32,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:57:14.468410",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:57:14.468410",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 69.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.92,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160773.59,
+      "disk_write_mb": 160082.83,
+      "network_sent_mb": 18.95,
+      "network_recv_mb": 176.63,
+      "network_packets_sent": 123227,
+      "network_packets_recv": 223431,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 32,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:57:53.920810",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:57:53.920810",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.92,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160773.68,
+      "disk_write_mb": 160092.51,
+      "network_sent_mb": 19.17,
+      "network_recv_mb": 176.99,
+      "network_packets_sent": 125398,
+      "network_packets_recv": 225708,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 31,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:58:33.414699",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:58:33.414699",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.02,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160774.02,
+      "disk_write_mb": 160102.81,
+      "network_sent_mb": 19.41,
+      "network_recv_mb": 177.36,
+      "network_packets_sent": 127632,
+      "network_packets_recv": 228037,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 31,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:59:09.089415",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:59:09.089415",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.03,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160774.02,
+      "disk_write_mb": 160105.91,
+      "network_sent_mb": 19.64,
+      "network_recv_mb": 177.75,
+      "network_packets_sent": 129666,
+      "network_packets_recv": 230190,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T10:59:44.573142",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T10:59:44.573142",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.95,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160774.41,
+      "disk_write_mb": 160109.44,
+      "network_sent_mb": 19.86,
+      "network_recv_mb": 178.1,
+      "network_packets_sent": 131692,
+      "network_packets_recv": 232299,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260122_11.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260122_11.json	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
+++ received_data_sysmon/Ilina-laptop/20260122_11.json	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
@@ -0,0 +1,7742 @@
+[
+  {
+    "timestamp": "2026-01-22T11:00:20.078289",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:00:20.078289",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.96,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160774.7,
+      "disk_write_mb": 160112.97,
+      "network_sent_mb": 20.06,
+      "network_recv_mb": 178.42,
+      "network_packets_sent": 133643,
+      "network_packets_recv": 234341,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:00:55.710730",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:00:55.710730",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.87,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160774.84,
+      "disk_write_mb": 160117.14,
+      "network_sent_mb": 20.28,
+      "network_recv_mb": 178.79,
+      "network_packets_sent": 135658,
+      "network_packets_recv": 236464,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:01:31.266437",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:01:31.266437",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.8,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160774.93,
+      "disk_write_mb": 160119.65,
+      "network_sent_mb": 20.49,
+      "network_recv_mb": 179.12,
+      "network_packets_sent": 137651,
+      "network_packets_recv": 238561,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:02:06.751912",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:02:06.751912",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.0,
+      "swap_usage": 16.7,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160778.88,
+      "disk_write_mb": 160154.56,
+      "network_sent_mb": 20.74,
+      "network_recv_mb": 179.5,
+      "network_packets_sent": 139687,
+      "network_packets_recv": 240708,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:02:46.093077",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:02:46.093077",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.78,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160791.18,
+      "disk_write_mb": 160185.35,
+      "network_sent_mb": 20.96,
+      "network_recv_mb": 179.87,
+      "network_packets_sent": 141872,
+      "network_packets_recv": 242991,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:03:25.280127",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:03:25.280127",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.78,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160791.39,
+      "disk_write_mb": 160194.64,
+      "network_sent_mb": 21.19,
+      "network_recv_mb": 180.22,
+      "network_packets_sent": 144049,
+      "network_packets_recv": 245267,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:04:04.384654",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:04:04.384654",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 68.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.78,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160791.48,
+      "disk_write_mb": 160205.44,
+      "network_sent_mb": 21.41,
+      "network_recv_mb": 180.58,
+      "network_packets_sent": 146208,
+      "network_packets_recv": 247518,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.6,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:04:43.758114",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:04:43.758114",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.94,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160808.81,
+      "disk_write_mb": 160218.35,
+      "network_sent_mb": 21.67,
+      "network_recv_mb": 181.01,
+      "network_packets_sent": 148463,
+      "network_packets_recv": 249896,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:05:22.989966",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:05:22.989966",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.88,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160808.87,
+      "disk_write_mb": 160231.39,
+      "network_sent_mb": 21.89,
+      "network_recv_mb": 181.38,
+      "network_packets_sent": 150639,
+      "network_packets_recv": 252164,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:06:02.145097",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:06:02.145097",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 70.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.94,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160808.99,
+      "disk_write_mb": 160242.84,
+      "network_sent_mb": 22.16,
+      "network_recv_mb": 181.8,
+      "network_packets_sent": 152886,
+      "network_packets_recv": 254520,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:06:41.239633",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:06:41.239633",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.82,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160809.1,
+      "disk_write_mb": 160256.44,
+      "network_sent_mb": 22.41,
+      "network_recv_mb": 182.18,
+      "network_packets_sent": 155087,
+      "network_packets_recv": 256842,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:07:20.315214",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:07:20.315214",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.82,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160809.3,
+      "disk_write_mb": 160267.21,
+      "network_sent_mb": 22.65,
+      "network_recv_mb": 182.54,
+      "network_packets_sent": 157287,
+      "network_packets_recv": 259096,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 196.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 25,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:07:59.410248",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:07:59.410248",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.84,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160809.37,
+      "disk_write_mb": 160277.92,
+      "network_sent_mb": 22.89,
+      "network_recv_mb": 182.9,
+      "network_packets_sent": 159482,
+      "network_packets_recv": 261349,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 25,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:08:38.489602",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:08:38.489602",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.92,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.34,
+      "disk_read_mb": 160809.43,
+      "disk_write_mb": 160290.16,
+      "network_sent_mb": 23.15,
+      "network_recv_mb": 183.32,
+      "network_packets_sent": 161732,
+      "network_packets_recv": 263720,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.34,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 24,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:09:17.589438",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:09:17.589438",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.84,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160809.49,
+      "disk_write_mb": 160301.21,
+      "network_sent_mb": 23.37,
+      "network_recv_mb": 183.67,
+      "network_packets_sent": 163887,
+      "network_packets_recv": 265966,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 24,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:09:56.809815",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:09:56.809815",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 69.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.89,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160809.93,
+      "disk_write_mb": 160311.49,
+      "network_sent_mb": 23.6,
+      "network_recv_mb": 184.03,
+      "network_packets_sent": 166062,
+      "network_packets_recv": 268249,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.03,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 23,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:10:35.961337",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:10:35.961337",
+      "is_sysmon_available": false,
+      "cpu_usage": 68.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.09,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160810.28,
+      "disk_write_mb": 160322.74,
+      "network_sent_mb": 23.83,
+      "network_recv_mb": 184.4,
+      "network_packets_sent": 168260,
+      "network_packets_recv": 270543,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.04,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 23,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:11:15.712407",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:11:15.712407",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.83,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160810.44,
+      "disk_write_mb": 160341.72,
+      "network_sent_mb": 24.2,
+      "network_recv_mb": 185.08,
+      "network_packets_sent": 170694,
+      "network_packets_recv": 273061,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 23,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:11:55.143286",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:11:55.143286",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 68.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.77,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160810.59,
+      "disk_write_mb": 160355.7,
+      "network_sent_mb": 24.45,
+      "network_recv_mb": 185.49,
+      "network_packets_sent": 172936,
+      "network_packets_recv": 275406,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:12:34.311839",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:12:34.311839",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.89,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160830.0,
+      "disk_write_mb": 160387.62,
+      "network_sent_mb": 24.71,
+      "network_recv_mb": 185.99,
+      "network_packets_sent": 175249,
+      "network_packets_recv": 277853,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:13:13.452057",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:13:13.452057",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 69.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 10.89,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160830.32,
+      "disk_write_mb": 160399.96,
+      "network_sent_mb": 25.0,
+      "network_recv_mb": 186.37,
+      "network_packets_sent": 177484,
+      "network_packets_recv": 280205,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.09,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 21,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:13:53.380610",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:13:53.380610",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.16,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160855.32,
+      "disk_write_mb": 160411.01,
+      "network_sent_mb": 26.08,
+      "network_recv_mb": 186.8,
+      "network_packets_sent": 180699,
+      "network_packets_recv": 282783,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 21,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:14:33.391061",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:14:33.391061",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.26,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160872.87,
+      "disk_write_mb": 160425.2,
+      "network_sent_mb": 27.95,
+      "network_recv_mb": 187.11,
+      "network_packets_sent": 184602,
+      "network_packets_recv": 285193,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 20,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:15:13.463797",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:15:13.463797",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.28,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160873.14,
+      "disk_write_mb": 160439.14,
+      "network_sent_mb": 29.06,
+      "network_recv_mb": 187.44,
+      "network_packets_sent": 188455,
+      "network_packets_recv": 287646,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 20,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:15:52.786602",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:15:52.786602",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.44,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160873.77,
+      "disk_write_mb": 160450.49,
+      "network_sent_mb": 30.47,
+      "network_recv_mb": 187.8,
+      "network_packets_sent": 192151,
+      "network_packets_recv": 290101,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:16:32.712189",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:16:32.712189",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.27,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160880.36,
+      "disk_write_mb": 160479.37,
+      "network_sent_mb": 31.78,
+      "network_recv_mb": 188.11,
+      "network_packets_sent": 195497,
+      "network_packets_recv": 292494,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:17:08.635512",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:17:08.635512",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.36,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160881.36,
+      "disk_write_mb": 160491.8,
+      "network_sent_mb": 33.25,
+      "network_recv_mb": 188.42,
+      "network_packets_sent": 198785,
+      "network_packets_recv": 294696,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 18,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:17:49.021775",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:17:49.021775",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.35,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160881.49,
+      "disk_write_mb": 160506.63,
+      "network_sent_mb": 34.81,
+      "network_recv_mb": 188.74,
+      "network_packets_sent": 202327,
+      "network_packets_recv": 297150,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 18,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:18:28.862797",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:18:28.862797",
+      "is_sysmon_available": false,
+      "cpu_usage": 31.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.36,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160884.18,
+      "disk_write_mb": 160517.45,
+      "network_sent_mb": 36.37,
+      "network_recv_mb": 189.08,
+      "network_packets_sent": 206091,
+      "network_packets_recv": 299654,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:19:08.780345",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:19:08.780345",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.39,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160886.02,
+      "disk_write_mb": 160531.21,
+      "network_sent_mb": 38.59,
+      "network_recv_mb": 189.52,
+      "network_packets_sent": 210418,
+      "network_packets_recv": 302244,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 17,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:19:48.550211",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:19:48.550211",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.4,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160886.52,
+      "disk_write_mb": 160544.77,
+      "network_sent_mb": 40.99,
+      "network_recv_mb": 189.93,
+      "network_packets_sent": 214791,
+      "network_packets_recv": 304726,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:20:28.306422",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:20:28.306422",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.4,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160887.01,
+      "disk_write_mb": 160558.67,
+      "network_sent_mb": 44.14,
+      "network_recv_mb": 190.29,
+      "network_packets_sent": 219849,
+      "network_packets_recv": 307219,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 16,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:21:19.831552",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:21:19.831552",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.39,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160899.02,
+      "disk_write_mb": 160575.04,
+      "network_sent_mb": 35.33,
+      "network_recv_mb": 89.7,
+      "network_packets_sent": 156145,
+      "network_packets_recv": 163715,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:22:02.821957",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:22:02.821957",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.35,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160899.27,
+      "disk_write_mb": 160586.23,
+      "network_sent_mb": 37.14,
+      "network_recv_mb": 90.15,
+      "network_packets_sent": 160083,
+      "network_packets_recv": 166231,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:22:42.591170",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:22:42.591170",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.34,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160899.41,
+      "disk_write_mb": 160598.49,
+      "network_sent_mb": 39.12,
+      "network_recv_mb": 90.6,
+      "network_packets_sent": 164276,
+      "network_packets_recv": 168712,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:23:21.924565",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:23:21.924565",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.31,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160899.47,
+      "disk_write_mb": 160608.34,
+      "network_sent_mb": 40.47,
+      "network_recv_mb": 91.08,
+      "network_packets_sent": 168318,
+      "network_packets_recv": 171188,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 14,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:24:01.183935",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:24:01.183935",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.39,
+      "swap_usage": 16.6,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160911.08,
+      "disk_write_mb": 160618.15,
+      "network_sent_mb": 43.1,
+      "network_recv_mb": 91.57,
+      "network_packets_sent": 173229,
+      "network_packets_recv": 173673,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:24:40.624978",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:24:40.624978",
+      "is_sysmon_available": false,
+      "cpu_usage": 25.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.34,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160920.19,
+      "disk_write_mb": 160630.78,
+      "network_sent_mb": 44.99,
+      "network_recv_mb": 92.05,
+      "network_packets_sent": 177181,
+      "network_packets_recv": 176169,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 13,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:25:20.208340",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:25:20.208340",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.27,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160920.34,
+      "disk_write_mb": 160639.54,
+      "network_sent_mb": 46.33,
+      "network_recv_mb": 92.48,
+      "network_packets_sent": 180842,
+      "network_packets_recv": 178539,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:25:59.531597",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:25:59.531597",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.38,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160920.41,
+      "disk_write_mb": 160648.55,
+      "network_sent_mb": 47.73,
+      "network_recv_mb": 92.98,
+      "network_packets_sent": 184703,
+      "network_packets_recv": 181031,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:26:38.979606",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:26:38.979606",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.28,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160920.75,
+      "disk_write_mb": 160661.51,
+      "network_sent_mb": 49.33,
+      "network_recv_mb": 93.43,
+      "network_packets_sent": 188606,
+      "network_packets_recv": 183549,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:27:18.514294",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:27:18.514294",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.18,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160920.88,
+      "disk_write_mb": 160673.64,
+      "network_sent_mb": 50.7,
+      "network_recv_mb": 93.87,
+      "network_packets_sent": 192358,
+      "network_packets_recv": 185918,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:27:57.549744",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:27:57.549744",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.28,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160927.55,
+      "disk_write_mb": 160683.74,
+      "network_sent_mb": 51.72,
+      "network_recv_mb": 94.36,
+      "network_packets_sent": 196211,
+      "network_packets_recv": 188368,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:28:36.504586",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:28:36.504586",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.35,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160927.81,
+      "disk_write_mb": 160694.36,
+      "network_sent_mb": 52.61,
+      "network_recv_mb": 94.76,
+      "network_packets_sent": 200040,
+      "network_packets_recv": 190743,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:29:15.797367",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:29:15.797367",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.33,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160928.04,
+      "disk_write_mb": 160705.33,
+      "network_sent_mb": 53.55,
+      "network_recv_mb": 95.15,
+      "network_packets_sent": 203999,
+      "network_packets_recv": 193162,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:29:54.957302",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:29:54.957302",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.4,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160928.19,
+      "disk_write_mb": 160715.88,
+      "network_sent_mb": 54.49,
+      "network_recv_mb": 95.56,
+      "network_packets_sent": 207950,
+      "network_packets_recv": 195547,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:30:34.756229",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:30:34.756229",
+      "is_sysmon_available": false,
+      "cpu_usage": 60.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.53,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160928.25,
+      "disk_write_mb": 160726.32,
+      "network_sent_mb": 55.49,
+      "network_recv_mb": 95.91,
+      "network_packets_sent": 211554,
+      "network_packets_recv": 197957,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:31:14.465192",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:31:14.465192",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.2,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160928.31,
+      "disk_write_mb": 160738.57,
+      "network_sent_mb": 56.37,
+      "network_recv_mb": 96.37,
+      "network_packets_sent": 215677,
+      "network_packets_recv": 200398,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:31:53.675739",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:31:53.675739",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.2,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160928.44,
+      "disk_write_mb": 160748.28,
+      "network_sent_mb": 57.23,
+      "network_recv_mb": 96.81,
+      "network_packets_sent": 219714,
+      "network_packets_recv": 202825,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:32:32.819852",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:32:32.819852",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.29,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160928.63,
+      "disk_write_mb": 160759.51,
+      "network_sent_mb": 58.27,
+      "network_recv_mb": 97.28,
+      "network_packets_sent": 223350,
+      "network_packets_recv": 205284,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:33:12.427293",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:33:12.427293",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.18,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160928.97,
+      "disk_write_mb": 160769.76,
+      "network_sent_mb": 59.3,
+      "network_recv_mb": 97.73,
+      "network_packets_sent": 227181,
+      "network_packets_recv": 207697,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:33:51.467082",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:33:51.467082",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.31,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 160937.68,
+      "disk_write_mb": 160781.13,
+      "network_sent_mb": 60.37,
+      "network_recv_mb": 98.18,
+      "network_packets_sent": 231100,
+      "network_packets_recv": 210133,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 6,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:34:30.803837",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:34:30.803837",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.47,
+      "swap_usage": 16.5,
+      "disk_usage": 64.0,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.38,
+      "disk_read_mb": 161006.63,
+      "disk_write_mb": 160922.2,
+      "network_sent_mb": 61.66,
+      "network_recv_mb": 115.84,
+      "network_packets_sent": 239557,
+      "network_packets_recv": 217465,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.38,
+          "free_gb": 171.56,
+          "percent_used": 64.0
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 6,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:35:10.720578",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:35:10.720578",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.69,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 161016.39,
+      "disk_write_mb": 161153.51,
+      "network_sent_mb": 63.39,
+      "network_recv_mb": 116.31,
+      "network_packets_sent": 243918,
+      "network_packets_recv": 219992,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 7,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:35:48.994447",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:35:48.994447",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.83,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.35,
+      "disk_read_mb": 161037.98,
+      "disk_write_mb": 161171.23,
+      "network_sent_mb": 64.34,
+      "network_recv_mb": 117.09,
+      "network_packets_sent": 246944,
+      "network_packets_recv": 222706,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.35,
+          "free_gb": 171.59,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 8,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:36:29.057503",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:36:29.057503",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.5,
+      "swap_usage": 16.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.26,
+      "disk_read_mb": 161151.66,
+      "disk_write_mb": 161251.52,
+      "network_sent_mb": 65.01,
+      "network_recv_mb": 123.3,
+      "network_packets_sent": 249620,
+      "network_packets_recv": 227562,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.26,
+          "free_gb": 171.68,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:37:06.895421",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:37:06.895421",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.62,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.28,
+      "disk_read_mb": 161200.27,
+      "disk_write_mb": 161293.75,
+      "network_sent_mb": 65.45,
+      "network_recv_mb": 124.11,
+      "network_packets_sent": 250674,
+      "network_packets_recv": 230667,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.28,
+          "free_gb": 171.66,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 9,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:37:44.506230",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:37:44.506230",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.45,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.29,
+      "disk_read_mb": 161200.37,
+      "disk_write_mb": 161320.95,
+      "network_sent_mb": 65.52,
+      "network_recv_mb": 124.48,
+      "network_packets_sent": 250868,
+      "network_packets_recv": 232901,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.29,
+          "free_gb": 171.64,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 10,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:38:21.983380",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:38:21.983380",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.49,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.28,
+      "disk_read_mb": 161261.12,
+      "disk_write_mb": 161363.9,
+      "network_sent_mb": 65.96,
+      "network_recv_mb": 125.23,
+      "network_packets_sent": 251840,
+      "network_packets_recv": 235943,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.28,
+          "free_gb": 171.66,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 11,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-22T11:38:59.530149",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T11:38:59.530149",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.46,
+      "swap_usage": 16.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.29,
+      "disk_read_mb": 161261.45,
+      "disk_write_mb": 161392.36,
+      "network_sent_mb": 66.05,
+      "network_recv_mb": 125.57,
+      "network_packets_sent": 252078,
+      "network_packets_recv": 238145,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 197.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.29,
+          "free_gb": 171.64,
+          "percent_used": 63.9
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 12,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260122_14.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260122_14.json	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
+++ received_data_sysmon/Ilina-laptop/20260122_14.json	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
@@ -0,0 +1,114 @@
+[
+  {
+    "timestamp": "2026-01-22T14:04:33.426114",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.1.13",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T14:04:33.426114",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.72,
+      "swap_usage": 16.3,
+      "disk_usage": 64.1,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 305.03,
+      "disk_read_mb": 162229.96,
+      "disk_write_mb": 162557.28,
+      "network_sent_mb": 66.05,
+      "network_recv_mb": 125.57,
+      "network_packets_sent": 252078,
+      "network_packets_recv": 238145,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 199.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 305.03,
+          "free_gb": 170.9,
+          "percent_used": 64.1
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "192.168.1.13",
+            "netmask": "255.255.255.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 85,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260122_17.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260122_17.json	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
+++ received_data_sysmon/Ilina-laptop/20260122_17.json	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
@@ -0,0 +1,3227 @@
+[
+  {
+    "timestamp": "2026-01-22T17:14:13.426225",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:14:13.426225",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.61,
+      "swap_usage": 14.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.08,
+      "disk_read_mb": 169981.17,
+      "disk_write_mb": 172506.58,
+      "network_sent_mb": 169.75,
+      "network_recv_mb": 2093.54,
+      "network_packets_sent": 238437,
+      "network_packets_recv": 689848,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.08,
+          "free_gb": 167.86,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:14:48.192682",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:14:48.192682",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.99,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.08,
+      "disk_read_mb": 169992.86,
+      "disk_write_mb": 172567.12,
+      "network_sent_mb": 169.85,
+      "network_recv_mb": 2095.5,
+      "network_packets_sent": 239021,
+      "network_packets_recv": 691751,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.08,
+          "free_gb": 167.85,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 15,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:17:06.773089",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:17:06.773089",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.6,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170032.73,
+      "disk_write_mb": 172627.78,
+      "network_sent_mb": 170.13,
+      "network_recv_mb": 2095.85,
+      "network_packets_sent": 239837,
+      "network_packets_recv": 692637,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.89,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 18,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:17:45.318365",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:17:45.318365",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.58,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170034.18,
+      "disk_write_mb": 172642.67,
+      "network_sent_mb": 170.37,
+      "network_recv_mb": 2096.09,
+      "network_packets_sent": 240558,
+      "network_packets_recv": 693435,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:18:23.709917",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:18:23.709917",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.4,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170035.98,
+      "disk_write_mb": 172657.52,
+      "network_sent_mb": 170.55,
+      "network_recv_mb": 2096.18,
+      "network_packets_sent": 241004,
+      "network_packets_recv": 693860,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 19,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:19:01.251898",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:19:01.251898",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.36,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170036.13,
+      "disk_write_mb": 172668.84,
+      "network_sent_mb": 170.59,
+      "network_recv_mb": 2096.21,
+      "network_packets_sent": 241133,
+      "network_packets_recv": 693990,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 20,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:19:39.000281",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:19:39.000281",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.41,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170036.4,
+      "disk_write_mb": 172682.47,
+      "network_sent_mb": 170.68,
+      "network_recv_mb": 2096.32,
+      "network_packets_sent": 241353,
+      "network_packets_recv": 694232,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 21,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:20:16.592367",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:20:16.592367",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.42,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170036.43,
+      "disk_write_mb": 172694.69,
+      "network_sent_mb": 170.7,
+      "network_recv_mb": 2096.35,
+      "network_packets_sent": 241446,
+      "network_packets_recv": 694349,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:20:54.058874",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:20:54.058874",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.45,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170043.05,
+      "disk_write_mb": 172706.31,
+      "network_sent_mb": 170.76,
+      "network_recv_mb": 2096.4,
+      "network_packets_sent": 241616,
+      "network_packets_recv": 694531,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 22,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:21:32.065800",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:21:32.065800",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.22,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170043.49,
+      "disk_write_mb": 172718.12,
+      "network_sent_mb": 170.87,
+      "network_recv_mb": 2096.45,
+      "network_packets_sent": 241787,
+      "network_packets_recv": 694673,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 23,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:22:09.655011",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:22:09.655011",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.24,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170049.14,
+      "disk_write_mb": 172731.45,
+      "network_sent_mb": 170.99,
+      "network_recv_mb": 2096.81,
+      "network_packets_sent": 242149,
+      "network_packets_recv": 695081,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 24,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:22:47.138298",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:22:47.138298",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.31,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.05,
+      "disk_read_mb": 170049.71,
+      "disk_write_mb": 172743.43,
+      "network_sent_mb": 171.15,
+      "network_recv_mb": 2096.96,
+      "network_packets_sent": 242570,
+      "network_packets_recv": 695495,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.05,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 25,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:23:23.915751",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:23:23.915751",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.38,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170050.09,
+      "disk_write_mb": 172756.36,
+      "network_sent_mb": 171.33,
+      "network_recv_mb": 2097.09,
+      "network_packets_sent": 243002,
+      "network_packets_recv": 695887,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 25,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:24:01.494280",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:24:01.494280",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.22,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170050.37,
+      "disk_write_mb": 172769.39,
+      "network_sent_mb": 171.4,
+      "network_recv_mb": 2097.13,
+      "network_packets_sent": 243146,
+      "network_packets_recv": 696044,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 26,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:24:39.013006",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:24:39.013006",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.28,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170050.51,
+      "disk_write_mb": 172781.22,
+      "network_sent_mb": 171.45,
+      "network_recv_mb": 2097.18,
+      "network_packets_sent": 243290,
+      "network_packets_recv": 696224,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 27,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:25:16.472964",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:25:16.472964",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.37,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170051.94,
+      "disk_write_mb": 172793.7,
+      "network_sent_mb": 171.49,
+      "network_recv_mb": 2097.23,
+      "network_packets_sent": 243438,
+      "network_packets_recv": 696367,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:25:54.536559",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:25:54.536559",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.42,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170052.44,
+      "disk_write_mb": 172806.92,
+      "network_sent_mb": 171.56,
+      "network_recv_mb": 2097.34,
+      "network_packets_sent": 243694,
+      "network_packets_recv": 696659,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 28,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:26:32.146486",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:26:32.146486",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.19,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170052.56,
+      "disk_write_mb": 172819.64,
+      "network_sent_mb": 171.59,
+      "network_recv_mb": 2097.37,
+      "network_packets_sent": 243787,
+      "network_packets_recv": 696771,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 29,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:27:09.607403",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:27:09.607403",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.21,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170053.94,
+      "disk_write_mb": 172830.2,
+      "network_sent_mb": 171.66,
+      "network_recv_mb": 2097.42,
+      "network_packets_sent": 243963,
+      "network_packets_recv": 696946,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 30,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:27:47.310360",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:27:47.310360",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.2,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170054.28,
+      "disk_write_mb": 172841.66,
+      "network_sent_mb": 171.7,
+      "network_recv_mb": 2097.45,
+      "network_packets_sent": 244086,
+      "network_packets_recv": 697072,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 31,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:28:25.238479",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:28:25.238479",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.15,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170054.78,
+      "disk_write_mb": 172852.06,
+      "network_sent_mb": 171.73,
+      "network_recv_mb": 2097.48,
+      "network_packets_sent": 244183,
+      "network_packets_recv": 697179,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 31,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:29:02.638044",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:29:02.638044",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.13,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170073.69,
+      "disk_write_mb": 172881.46,
+      "network_sent_mb": 171.76,
+      "network_recv_mb": 2097.52,
+      "network_packets_sent": 244288,
+      "network_packets_recv": 697308,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 32,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:29:40.089345",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:29:40.089345",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.18,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170073.85,
+      "disk_write_mb": 172893.29,
+      "network_sent_mb": 171.81,
+      "network_recv_mb": 2097.56,
+      "network_packets_sent": 244414,
+      "network_packets_recv": 697449,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 33,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:30:17.440443",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:30:17.440443",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.23,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170074.29,
+      "disk_write_mb": 172903.94,
+      "network_sent_mb": 171.85,
+      "network_recv_mb": 2097.61,
+      "network_packets_sent": 244530,
+      "network_packets_recv": 697590,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-22T17:30:54.950982",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "172.20.10.4",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-22T17:30:54.950982",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.41,
+      "swap_usage": 13.9,
+      "disk_usage": 64.7,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 308.06,
+      "disk_read_mb": 170074.91,
+      "disk_write_mb": 172914.98,
+      "network_sent_mb": 171.9,
+      "network_recv_mb": 2097.72,
+      "network_packets_sent": 244791,
+      "network_packets_recv": 697893,
+      "boot_time": "2026-01-14 06:08:03",
+      "uptime_hours": 203.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 308.06,
+          "free_gb": 167.88,
+          "percent_used": 64.7
+        }
+      ],
+      "network_interfaces": {
+        "Local Area Connection* 9": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-D4-D6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.21.51",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::5ded:b25c:a013:6f05",
+            "netmask": null
+          }
+        ],
+        "Local Area Connection* 10": [
+          {
+            "family": "-1",
+            "address": "96-BB-43-85-C4-C6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.182.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::b03e:8359:9cda:46e7",
+            "netmask": null
+          }
+        ],
+        "Wi-Fi": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F6",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "172.20.10.4",
+            "netmask": "255.255.255.240"
+          },
+          {
+            "family": "23",
+            "address": "fe80::8f08:c905:7251:3c09",
+            "netmask": null
+          }
+        ],
+        "Bluetooth Network Connection": [
+          {
+            "family": "-1",
+            "address": "94-BB-43-85-F4-F7",
+            "netmask": null
+          },
+          {
+            "family": "2",
+            "address": "169.254.5.144",
+            "netmask": "255.255.0.0"
+          },
+          {
+            "family": "23",
+            "address": "fe80::4b51:ccb7:5a3e:dba6",
+            "netmask": null
+          }
+        ],
+        "Loopback Pseudo-Interface 1": [
+          {
+            "family": "2",
+            "address": "127.0.0.1",
+            "netmask": "255.0.0.0"
+          },
+          {
+            "family": "23",
+            "address": "::1",
+            "netmask": null
+          }
+        ]
+      },
+      "battery_percent": 34,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  }
+]
Index: server.py
===================================================================
--- server.py	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ server.py	(revision d42aac31fe37e6e42a1b0515b54b86e8706d90a8)
@@ -255,4 +255,50 @@
         )
         """)
+
+    # Environment settings (switch-ови по env)
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS env_settings(
+            tenant_id INTEGER NOT NULL,
+            env_name TEXT NOT NULL,
+            save_process_history INTEGER DEFAULT 0,
+            created_at TEXT,
+            updated_at TEXT,
+            PRIMARY KEY(tenant_id, env_name),
+            FOREIGN KEY(tenant_id) REFERENCES tenants(id)
+        )
+    """)
+
+    # Latest processes (only current snapshot)
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS computer_processes_current(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            computer_id INTEGER NOT NULL,
+            pid INTEGER,
+            name TEXT,
+            cpu_percent REAL,
+            memory_mb REAL,
+            username TEXT,
+            cmdline TEXT,
+            timestamp TEXT,
+            FOREIGN KEY(computer_id) REFERENCES computers(id)
+        )
+    """)
+
+    # History processes (optional, controlled by switch)
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS computer_processes_history(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            computer_id INTEGER NOT NULL,
+            pid INTEGER,
+            name TEXT,
+            cpu_percent REAL,
+            memory_mb REAL,
+            username TEXT,
+            cmdline TEXT,
+            timestamp TEXT,
+            FOREIGN KEY(computer_id) REFERENCES computers(id)
+        )
+    """)
+
 
     conn.commit()
@@ -291,4 +337,18 @@
 
     return deco
+def is_process_history_enabled(tenant_id: int, env_name: str) -> bool:
+    conn = db()
+    c = conn.cursor()
+    c.execute("""
+        SELECT save_process_history
+        FROM env_settings
+        WHERE tenant_id=? AND env_name=?
+        LIMIT 1
+    """, (tenant_id, env_name))
+    row = c.fetchone()
+    conn.close()
+
+    # default: OFF ако нема запис
+    return bool(row["save_process_history"]) if row else False
 
 
@@ -381,7 +441,7 @@
 
             c.execute("DELETE FROM computer_history WHERE timestamp < ?", (cutoff,))
-            c.execute("DELETE FROM computer_processes WHERE timestamp < ?", (cutoff,))
             c.execute("DELETE FROM sysmon_events WHERE timestamp < ?", (cutoff,))
             c.execute("DELETE FROM network_connections WHERE timestamp < ?", (cutoff,))
+            c.execute("DELETE FROM computer_processes_history WHERE timestamp < ?", (cutoff,))
 
             conn.commit()
@@ -569,4 +629,45 @@
     return jsonify({"ok": True, "env": env, "token": token})
 
+@app.route("/api/admin/env-settings/<env_name>", methods=["GET"])
+@require_tenant_admin()
+def admin_get_env_settings(env_name):
+    tenant_id = request.user["tenant_id"]
+
+    conn = db()
+    c = conn.cursor()
+    c.execute("""
+        SELECT save_process_history
+        FROM env_settings
+        WHERE tenant_id=? AND env_name=?
+        LIMIT 1
+    """, (tenant_id, env_name))
+    row = c.fetchone()
+    conn.close()
+
+    return jsonify({
+        "env": env_name,
+        "save_process_history": bool(row["save_process_history"]) if row else False
+    })
+
+@app.route("/api/admin/env-settings/<env_name>", methods=["POST"])
+@require_tenant_admin()
+def admin_set_env_settings(env_name):
+    tenant_id = request.user["tenant_id"]
+    data = request.get_json(force=True, silent=True) or {}
+    enabled = 1 if bool(data.get("save_process_history")) else 0
+
+    conn = db()
+    c = conn.cursor()
+    c.execute("""
+        INSERT INTO env_settings(tenant_id, env_name, save_process_history, created_at, updated_at)
+        VALUES(?, ?, ?, datetime('now'), datetime('now'))
+        ON CONFLICT(tenant_id, env_name) DO UPDATE SET
+            save_process_history=excluded.save_process_history,
+            updated_at=datetime('now')
+    """, (tenant_id, env_name, enabled))
+    conn.commit()
+    conn.close()
+
+    return jsonify({"ok": True, "env": env_name, "save_process_history": bool(enabled)})
 
 # ----------------------------
@@ -596,5 +697,8 @@
 
         # Find by (tenant_id + name)
-        c.execute("SELECT id FROM computers WHERE tenant_id=? AND name=? LIMIT 1", (tenant_id, computer_name))
+        c.execute(
+            "SELECT id FROM computers WHERE tenant_id=? AND name=? LIMIT 1",
+            (tenant_id, computer_name),
+        )
         row = c.fetchone()
 
@@ -602,8 +706,8 @@
             computer_id = row["id"]
             c.execute("""
-                    UPDATE computers
-                    SET user=?, ip=?, os=?, last_seen=?, sysmon_available=?, env_name=?
-                    WHERE id=? AND tenant_id=?
-                """, (
+                UPDATE computers
+                SET user=?, ip=?, os=?, last_seen=?, sysmon_available=?, env_name=?
+                WHERE id=? AND tenant_id=?
+            """, (
                 info.get("user"),
                 info.get("ip_address"),
@@ -617,7 +721,10 @@
         else:
             c.execute("""
-                    INSERT INTO computers(tenant_id, env_name, name, user, ip, os, first_seen, last_seen, sysmon_available)
-                    VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)
-                """, (
+                INSERT INTO computers(
+                    tenant_id, env_name, name, user, ip, os,
+                    first_seen, last_seen, sysmon_available
+                )
+                VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)
+            """, (
                 tenant_id,
                 env_name,
@@ -634,8 +741,10 @@
         # history row
         c.execute("""
-                INSERT INTO computer_history(computer_id, cpu_usage, ram_usage, disk_usage,
-                                             network_sent_mb, network_recv_mb, timestamp)
-                VALUES(?, ?, ?, ?, ?, ?, ?)
-            """, (
+            INSERT INTO computer_history(
+                computer_id, cpu_usage, ram_usage, disk_usage,
+                network_sent_mb, network_recv_mb, timestamp
+            )
+            VALUES(?, ?, ?, ?, ?, ?, ?)
+        """, (
             computer_id,
             float(info.get("cpu_usage") or 0),
@@ -647,10 +756,18 @@
         ))
 
-        # processes
+        # ----------------------------
+        # processes: CURRENT (always)
+        # ----------------------------
+        # Clear old current snapshot for this computer
+        c.execute("DELETE FROM computer_processes_current WHERE computer_id=?", (computer_id,))
+
+        # Insert new snapshot
         for proc in (data.get("processes") or []):
             c.execute("""
-                    INSERT INTO computer_processes(computer_id, pid, name, cpu_percent, memory_mb, username, cmdline, timestamp)
-                    VALUES(?, ?, ?, ?, ?, ?, ?, ?)
-                """, (
+                INSERT INTO computer_processes_current(
+                    computer_id, pid, name, cpu_percent, memory_mb, username, cmdline, timestamp
+                )
+                VALUES(?, ?, ?, ?, ?, ?, ?, ?)
+            """, (
                 computer_id,
                 proc.get("pid"),
@@ -663,11 +780,34 @@
             ))
 
+        # ----------------------------
+        # processes: HISTORY (optional)
+        # ----------------------------
+        if is_process_history_enabled(tenant_id, env_name):
+            for proc in (data.get("processes") or []):
+                c.execute("""
+                    INSERT INTO computer_processes_history(
+                        computer_id, pid, name, cpu_percent, memory_mb, username, cmdline, timestamp
+                    )
+                    VALUES(?, ?, ?, ?, ?, ?, ?, ?)
+                """, (
+                    computer_id,
+                    proc.get("pid"),
+                    proc.get("name"),
+                    float(proc.get("cpu_percent") or 0),
+                    float(proc.get("memory_mb") or 0),
+                    proc.get("user") or proc.get("username"),
+                    proc.get("cmdline"),
+                    info.get("timestamp") or now_iso,
+                ))
+
         # sysmon events
         sysmon_count = 0
         for ev in (security_data.get("sysmon_events") or []):
             c.execute("""
-                    INSERT INTO sysmon_events(computer_id, event_id, event_type, message, timestamp, details)
-                    VALUES(?, ?, ?, ?, ?, ?)
-                """, (
+                INSERT INTO sysmon_events(
+                    computer_id, event_id, event_type, message, timestamp, details
+                )
+                VALUES(?, ?, ?, ?, ?, ?)
+            """, (
                 computer_id,
                 ev.get("event_id"),
@@ -682,7 +822,9 @@
         for nc in (security_data.get("network_connections") or []):
             c.execute("""
-                    INSERT INTO network_connections(computer_id, pid, local_address, remote_address, status, process_name, timestamp)
-                    VALUES(?, ?, ?, ?, ?, ?, ?)
-                """, (
+                INSERT INTO network_connections(
+                    computer_id, pid, local_address, remote_address, status, process_name, timestamp
+                )
+                VALUES(?, ?, ?, ?, ?, ?, ?)
+            """, (
                 computer_id,
                 nc.get("pid"),
@@ -710,4 +852,5 @@
             "sysmon_events_saved": sysmon_count,
             "server_time": now_iso,
+            "process_history_enabled": bool(is_process_history_enabled(tenant_id, env_name)),
         })
 
@@ -868,10 +1011,10 @@
 
     c.execute("""
-            SELECT pid, name, username, cpu_percent, memory_mb, cmdline, timestamp
-            FROM computer_processes
-            WHERE computer_id=?
-            ORDER BY timestamp DESC
-            LIMIT 100
-        """, (computer_id,))
+        SELECT pid, name, username, cpu_percent, memory_mb, cmdline, timestamp
+        FROM computer_processes_current
+        WHERE computer_id=?
+        ORDER BY timestamp DESC
+        LIMIT 200
+    """, (computer_id,))
     processes = [dict(r) for r in c.fetchall()]
 
@@ -956,6 +1099,9 @@
     out["sysmon_events"] = [dict(r) for r in c.fetchall()]
 
-    c.execute("SELECT * FROM computer_processes WHERE computer_id=? ORDER BY timestamp", (computer_id,))
-    out["processes"] = [dict(r) for r in c.fetchall()]
+    c.execute("SELECT * FROM computer_processes_current WHERE computer_id=? ORDER BY timestamp", (computer_id,))
+    out["processes_current"] = [dict(r) for r in c.fetchall()]
+
+    c.execute("SELECT * FROM computer_processes_history WHERE computer_id=? ORDER BY timestamp", (computer_id,))
+    out["processes_history"] = [dict(r) for r in c.fetchall()]
 
     c.execute("SELECT * FROM network_connections WHERE computer_id=? ORDER BY timestamp", (computer_id,))
@@ -1009,5 +1155,5 @@
     c.execute(f"""
             SELECT p.timestamp, p.pid, p.name, p.cpu_percent, p.memory_mb
-            FROM computer_processes p
+            FROM computer_processes_current p
             JOIN computers c2 ON c2.id = p.computer_id
             WHERE c2.tenant_id = ? {comp_clause}
@@ -1106,5 +1252,5 @@
     cleanup_thread.start()
 
-    print("🚀 netIntel server running on 0.0.0.0:5555")
+    print(" netIntel server running on 0.0.0.0:5555")
     # debug=False recommended; if you need debug, set True temporarily
     app.run(host="0.0.0.0", port=5555, debug=False, threaded=True)
Index: rver_fix.py
===================================================================
--- server_fix.py	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ 	(revision )
@@ -1,918 +1,0 @@
-"""
-FIXED SYSMON SERVER - Corrected API endpoints and database
-"""
-
-from flask import Flask, request, jsonify, render_template, send_from_directory
-import sqlite3
-import json
-from datetime import datetime, timedelta
-import threading
-import time
-from collections import defaultdict
-import os
-import re
-
-app = Flask(__name__)
-
-def init_database():
-    """Inicializiraј ja bazata so site polinja"""
-    conn = sqlite3.connect('sysmon_server.db', check_same_thread=False)
-    cursor = conn.cursor()
-
-    # KREIRAJ NOVA BAZA - DELETE OLD ONE FIRST
-    cursor.execute("DROP TABLE IF EXISTS sysmon_events")
-    cursor.execute("DROP TABLE IF EXISTS windows_events")
-    cursor.execute("DROP TABLE IF EXISTS system_info")
-    cursor.execute("DROP TABLE IF EXISTS processes")
-    cursor.execute("DROP TABLE IF EXISTS threats")
-    cursor.execute("DROP TABLE IF EXISTS computers")
-
-    # Kreiraј tabela za eventi so site polinja
-    cursor.execute('''
-        CREATE TABLE sysmon_events (
-            id INTEGER PRIMARY KEY AUTOINCREMENT,
-            event_id INTEGER,
-            event_type TEXT,
-            timestamp TEXT,
-            computer TEXT,
-            
-            -- Process Creation (Event ID 1)
-            process_name TEXT,
-            process_path TEXT,
-            command_line TEXT,
-            process_user TEXT,
-            parent_process TEXT,
-            parent_command TEXT,
-            current_directory TEXT,
-            hashes TEXT,
-            
-            -- Network Connection (Event ID 3)
-            source_ip TEXT,
-            source_port INTEGER,
-            dest_ip TEXT,
-            dest_port INTEGER,
-            protocol TEXT,
-            network_initiated TEXT,
-            
-            -- DNS Query (Event ID 22)
-            dns_query TEXT,
-            dns_results TEXT,
-            dns_status TEXT,
-            dns_process TEXT,
-            
-            -- File Create (Event ID 11)
-            file_path TEXT,
-            file_hash TEXT,
-            
-            -- DLL Loaded (Event ID 7)
-            dll_loaded TEXT,
-            dll_signed TEXT,
-            
-            -- Raw data
-            raw_data TEXT,
-            received_at TEXT
-        )
-    ''')
-
-    # Kreiraј tabela za Windows events
-    cursor.execute('''
-        CREATE TABLE windows_events (
-            id INTEGER PRIMARY KEY AUTOINCREMENT,
-            event_id INTEGER,
-            log_name TEXT,
-            source TEXT,
-            timestamp TEXT,
-            computer TEXT,
-            level TEXT,
-            message TEXT,
-            user TEXT,
-            process_name TEXT,
-            process_path TEXT,
-            file_created TEXT,
-            file_deleted TEXT,
-            file_modified TEXT,
-            service_name TEXT,
-            service_action TEXT,
-            login_user TEXT,
-            login_ip TEXT,
-            login_type TEXT,
-            raw_data TEXT,
-            received_at TEXT
-        )
-    ''')
-
-    # Kreiraј tabela za system info
-    cursor.execute('''
-        CREATE TABLE system_info (
-            id INTEGER PRIMARY KEY AUTOINCREMENT,
-            computer TEXT,
-            user TEXT,
-            os TEXT,
-            cpu_usage REAL,
-            ram_usage REAL,
-            disk_usage REAL,
-            timestamp TEXT,
-            received_at TEXT
-        )
-    ''')
-
-    # Kreiraј tabela za procesi SO EXE_PATH
-    cursor.execute('''
-        CREATE TABLE processes (
-            id INTEGER PRIMARY KEY AUTOINCREMENT,
-            pid INTEGER,
-            name TEXT,
-            user TEXT,
-            cpu_percent REAL,
-            memory_mb REAL,
-            cmdline TEXT,
-            exe_path TEXT,
-            timestamp TEXT,
-            computer TEXT,
-            received_at TEXT
-        )
-    ''')
-
-    # Kreiraј tabela za threats
-    cursor.execute('''
-        CREATE TABLE threats (
-            id INTEGER PRIMARY KEY AUTOINCREMENT,
-            computer TEXT,
-            threat_type TEXT,
-            level TEXT,
-            description TEXT,
-            details TEXT,
-            timestamp TEXT,
-            resolved BOOLEAN DEFAULT 0
-        )
-    ''')
-
-    # Kreiraј tabela za computers
-    cursor.execute('''
-        CREATE TABLE computers (
-            id INTEGER PRIMARY KEY AUTOINCREMENT,
-            computer_name TEXT UNIQUE,
-            user TEXT,
-            ip_address TEXT,
-            os TEXT,
-            last_seen TEXT,
-            total_events INTEGER DEFAULT 0,
-            status TEXT DEFAULT 'online'
-        )
-    ''')
-
-    # Kreiraј indeksi
-    cursor.execute('CREATE INDEX idx_computer ON sysmon_events(computer)')
-    cursor.execute('CREATE INDEX idx_event_type ON sysmon_events(event_type)')
-    cursor.execute('CREATE INDEX idx_timestamp ON sysmon_events(timestamp)')
-    cursor.execute('CREATE INDEX idx_dns_query ON sysmon_events(dns_query)')
-    cursor.execute('CREATE INDEX idx_process_name ON sysmon_events(process_name)')
-
-    conn.commit()
-    conn.close()
-    print("✅ Database initialized successfully with ALL columns")
-
-def get_db_connection():
-    """Vrati database connection"""
-    conn = sqlite3.connect('sysmon_server.db', check_same_thread=False)
-    conn.row_factory = sqlite3.Row
-    return conn
-
-# Site drugi funkcii se isti kako predhodno...
-# (kopiraј gi site funkcii od prethodniot kod)
-
-# FIXED API ENDPOINTS - koristi gi tochnite endpoints
-@app.route('/api/detailed_events')
-def api_detailed_events():
-    """Vrati detalni eventi"""
-    conn = get_db_connection()
-    cursor = conn.cursor()
-
-    limit = request.args.get('limit', 50, type=int)
-
-    cursor.execute('SELECT * FROM sysmon_events ORDER BY timestamp DESC LIMIT ?', (limit,))
-    events = []
-
-    for row in cursor.fetchall():
-        event = dict(row)
-        event['display_text'] = format_event_for_display(row)
-        events.append(event)
-
-    conn.close()
-
-    return jsonify({
-        "events": events,
-        "count": len(events)
-    })
-
-@app.route('/api/dns_queries')
-def api_dns_queries():
-    """Vrati DNS queries"""
-    conn = get_db_connection()
-    cursor = conn.cursor()
-
-    limit = request.args.get('limit', 100, type=int)
-
-    cursor.execute('''
-        SELECT timestamp, computer, dns_query, dns_results, dns_process
-        FROM sysmon_events 
-        WHERE dns_query != '' AND dns_query IS NOT NULL
-        ORDER BY timestamp DESC 
-        LIMIT ?
-    ''', (limit,))
-
-    dns_queries = []
-    for row in cursor.fetchall():
-        query = dict(row)
-        dns_queries.append(query)
-
-    conn.close()
-
-    return jsonify({
-        "dns_queries": dns_queries,
-        "count": len(dns_queries)
-    })
-
-@app.route('/api/process_creations')
-def api_process_creations():
-    """Vrati process creations"""
-    conn = get_db_connection()
-    cursor = conn.cursor()
-
-    limit = request.args.get('limit', 100, type=int)
-
-    cursor.execute('''
-        SELECT timestamp, computer, process_name, command_line, process_user
-        FROM sysmon_events 
-        WHERE event_id = 1 AND process_name != ''
-        ORDER BY timestamp DESC 
-        LIMIT ?
-    ''', (limit,))
-
-    processes = []
-    for row in cursor.fetchall():
-        proc = dict(row)
-        processes.append(proc)
-
-    conn.close()
-
-    return jsonify({
-        "process_creations": processes,
-        "count": len(processes)
-    })
-
-@app.route('/api/network_connections')
-def api_network_connections():
-    """Vrati network connections"""
-    conn = get_db_connection()
-    cursor = conn.cursor()
-
-    limit = request.args.get('limit', 100, type=int)
-
-    cursor.execute('''
-        SELECT timestamp, computer, process_name, dest_ip, dest_port
-        FROM sysmon_events 
-        WHERE event_id = 3 AND dest_ip != ''
-        ORDER BY timestamp DESC 
-        LIMIT ?
-    ''', (limit,))
-
-    connections = []
-    for row in cursor.fetchall():
-        conn_data = dict(row)
-        connections.append(conn_data)
-
-    conn.close()
-
-    return jsonify({
-        "network_connections": connections,
-        "count": len(connections)
-    })
-
-@app.route('/api/stats')
-def api_stats():
-    """Vrati statistika"""
-    conn = get_db_connection()
-    cursor = conn.cursor()
-
-    cursor.execute("SELECT COUNT(*) FROM sysmon_events")
-    total_events = cursor.fetchone()[0]
-
-    cursor.execute("SELECT COUNT(DISTINCT computer) FROM sysmon_events")
-    total_computers = cursor.fetchone()[0]
-
-    cursor.execute("SELECT COUNT(*) FROM computers WHERE status = 'online'")
-    online_computers = cursor.fetchone()[0]
-
-    cursor.execute("SELECT COUNT(*) FROM sysmon_events WHERE dns_query != ''")
-    total_dns = cursor.fetchone()[0]
-
-    cursor.execute("SELECT COUNT(*) FROM sysmon_events WHERE event_id = 1")
-    total_processes = cursor.fetchone()[0]
-
-    cursor.execute("SELECT COUNT(*) FROM sysmon_events WHERE event_id = 3")
-    total_connections = cursor.fetchone()[0]
-
-    conn.close()
-
-    return jsonify({
-        "total_events": total_events,
-        "total_computers": total_computers,
-        "online_computers": online_computers,
-        "dns_queries": total_dns,
-        "process_creations": total_processes,
-        "network_connections": total_connections,
-        "timestamp": datetime.now().isoformat()
-    })
-
-@app.route('/api/computers')
-def api_computers():
-    """Return list of computers"""
-    conn = get_db_connection()
-    cursor = conn.cursor()
-
-    cursor.execute('''
-        SELECT c.*, 
-               COUNT(e.id) as event_count,
-               MAX(e.timestamp) as last_event
-        FROM computers c
-        LEFT JOIN sysmon_events e ON c.computer_name = e.computer
-        GROUP BY c.computer_name
-        ORDER BY c.last_seen DESC
-    ''')
-
-    computers = []
-    for row in cursor.fetchall():
-        computer = dict(row)
-        computers.append(computer)
-
-    conn.close()
-
-    return jsonify({
-        "computers": computers,
-        "count": len(computers)
-    })
-
-@app.route('/api/dns')
-def api_dns():
-    """Return DNS queries"""
-    conn = get_db_connection()
-    cursor = conn.cursor()
-
-    limit = request.args.get('limit', 100, type=int)
-
-    cursor.execute('''
-        SELECT timestamp, computer, dns_query, dns_results, process_name
-        FROM sysmon_events 
-        WHERE dns_query IS NOT NULL AND dns_query != ''
-        ORDER BY timestamp DESC 
-        LIMIT ?
-    ''', (limit,))
-
-    dns_queries = [dict(row) for row in cursor.fetchall()]
-
-    # Get top queried domains
-    cursor.execute('''
-        SELECT dns_query, COUNT(*) as query_count
-        FROM sysmon_events 
-        WHERE dns_query IS NOT NULL AND dns_query != ''
-        GROUP BY dns_query
-        ORDER BY query_count DESC
-        LIMIT 10
-    ''')
-
-    top_domains = [dict(row) for row in cursor.fetchall()]
-
-    conn.close()
-
-    return jsonify({
-        "dns_queries": dns_queries,
-        "top_domains": top_domains,
-        "count": len(dns_queries)
-    })
-
-@app.route('/ping', methods=['GET'])
-def ping():
-    """Ping endpoint"""
-    return jsonify({
-        "message": "pong",
-        "status": "ok",
-        "server": "Fixed Sysmon Server",
-        "time": datetime.now().isoformat()
-    }), 200
-
-@app.route('/')
-def dashboard():
-    """Dashboard so popraveni API endpoints"""
-    return render_template('dashboard_fixed.html')
-
-# HTML template so popraveni API calls
-dashboard_fixed_html = '''<!DOCTYPE html>
-<html lang="en">
-<head>
-    <meta charset="UTF-8">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>Sysmon Dashboard - Fixed</title>
-    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
-    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
-    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
-    <style>
-        body { background-color: #f5f7fa; }
-        .card { margin-bottom: 20px; box-shadow: 0 2px 4px rgba(0,0,0,.05); }
-        .stat-card { border-left: 4px solid; }
-        .event-item { padding: 10px; border-left: 3px solid; margin-bottom: 5px; background: white; }
-        .event-dns { border-left-color: #3498db; }
-        .event-process { border-left-color: #2ecc71; }
-        .event-network { border-left-color: #e74c3c; }
-        .tab-content { padding-top: 20px; }
-    </style>
-</head>
-<body>
-    <nav class="navbar navbar-dark bg-dark">
-        <div class="container-fluid">
-            <span class="navbar-brand">
-                <i class="fas fa-shield-alt"></i> Sysmon Dashboard
-            </span>
-            <span class="navbar-text" id="currentTime"></span>
-        </div>
-    </nav>
-
-    <div class="container-fluid mt-3">
-        <!-- Stats -->
-        <div class="row mb-3">
-            <div class="col-md-2">
-                <div class="card stat-card border-left-primary">
-                    <div class="card-body">
-                        <h6>Total Events</h6>
-                        <h3 id="totalEvents">0</h3>
-                    </div>
-                </div>
-            </div>
-            <div class="col-md-2">
-                <div class="card stat-card border-left-success">
-                    <div class="card-body">
-                        <h6>Computers</h6>
-                        <h3><span id="onlineComputers">0</span>/<span id="totalComputers">0</span></h3>
-                    </div>
-                </div>
-            </div>
-            <div class="col-md-2">
-                <div class="card stat-card border-left-info">
-                    <div class="card-body">
-                        <h6>DNS Queries</h6>
-                        <h3 id="dnsCount">0</h3>
-                    </div>
-                </div>
-            </div>
-            <div class="col-md-2">
-                <div class="card stat-card border-left-warning">
-                    <div class="card-body">
-                        <h6>Processes</h6>
-                        <h3 id="processCount">0</h3>
-                    </div>
-                </div>
-            </div>
-            <div class="col-md-2">
-                <div class="card stat-card border-left-danger">
-                    <div class="card-body">
-                        <h6>Network</h6>
-                        <h3 id="networkCount">0</h3>
-                    </div>
-                </div>
-            </div>
-            <div class="col-md-2">
-                <div class="card stat-card border-left-secondary">
-                    <div class="card-body">
-                        <h6>Last Update</h6>
-                        <h6 id="lastUpdate">Just now</h6>
-                    </div>
-                </div>
-            </div>
-        </div>
-
-        <!-- Tabs -->
-        <ul class="nav nav-tabs">
-            <li class="nav-item">
-                <a class="nav-link active" data-bs-toggle="tab" href="#events">
-                    <i class="fas fa-list"></i> All Events
-                </a>
-            </li>
-            <li class="nav-item">
-                <a class="nav-link" data-bs-toggle="tab" href="#dns">
-                    <i class="fas fa-globe"></i> DNS
-                </a>
-            </li>
-            <li class="nav-item">
-                <a class="nav-link" data-bs-toggle="tab" href="#processes">
-                    <i class="fas fa-cogs"></i> Processes
-                </a>
-            </li>
-            <li class="nav-item">
-                <a class="nav-link" data-bs-toggle="tab" href="#network">
-                    <i class="fas fa-wifi"></i> Network
-                </a>
-            </li>
-        </ul>
-
-        <div class="tab-content">
-            <!-- Events Tab -->
-            <div id="events" class="tab-pane active">
-                <div class="card">
-                    <div class="card-header">
-                        <h5>Recent Events</h5>
-                    </div>
-                    <div class="card-body">
-                        <div id="eventsList">Loading...</div>
-                    </div>
-                </div>
-            </div>
-
-            <!-- DNS Tab -->
-            <div id="dns" class="tab-pane">
-                <div class="card">
-                    <div class="card-header">
-                        <h5>DNS Queries</h5>
-                    </div>
-                    <div class="card-body">
-                        <table class="table table-sm">
-                            <thead>
-                                <tr>
-                                    <th>Time</th>
-                                    <th>Computer</th>
-                                    <th>Domain</th>
-                                    <th>Results</th>
-                                    <th>Process</th>
-                                </tr>
-                            </thead>
-                            <tbody id="dnsTable">
-                            </tbody>
-                        </table>
-                    </div>
-                </div>
-            </div>
-
-            <!-- Processes Tab -->
-            <div id="processes" class="tab-pane">
-                <div class="card">
-                    <div class="card-header">
-                        <h5>Process Executions</h5>
-                    </div>
-                    <div class="card-body">
-                        <table class="table table-sm">
-                            <thead>
-                                <tr>
-                                    <th>Time</th>
-                                    <th>Computer</th>
-                                    <th>Process</th>
-                                    <th>User</th>
-                                    <th>Command</th>
-                                </tr>
-                            </thead>
-                            <tbody id="processesTable">
-                            </tbody>
-                        </table>
-                    </div>
-                </div>
-            </div>
-
-            <!-- Network Tab -->
-            <div id="network" class="tab-pane">
-                <div class="card">
-                    <div class="card-header">
-                        <h5>Network Connections</h5>
-                    </div>
-                    <div class="card-body">
-                        <table class="table table-sm">
-                            <thead>
-                                <tr>
-                                    <th>Time</th>
-                                    <th>Computer</th>
-                                    <th>Process</th>
-                                    <th>Destination</th>
-                                    <th>Port</th>
-                                </tr>
-                            </thead>
-                            <tbody id="networkTable">
-                            </tbody>
-                        </table>
-                    </div>
-                </div>
-            </div>
-        </div>
-    </div>
-
-    <!-- Bootstrap JS -->
-    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
-    
-    <script>
-        // Popraveni API endpoints
-        const API_ENDPOINTS = {
-            stats: '/api/stats',
-            events: '/api/detailed_events',
-            dns: '/api/dns_queries',
-            processes: '/api/process_creations',
-            network: '/api/network_connections',
-            computers: '/api/computers'
-        };
-        
-        $(document).ready(function() {
-            updateTime();
-            loadAllData();
-            setInterval(loadAllData, 10000);
-            setInterval(updateTime, 1000);
-        });
-        
-        function updateTime() {
-            $('#currentTime').text(new Date().toLocaleString());
-        }
-        
-        function loadAllData() {
-            loadStats();
-            loadEvents();
-            loadDNS();
-            loadProcesses();
-            loadNetwork();
-        }
-        
-        function loadStats() {
-            $.get(API_ENDPOINTS.stats, function(data) {
-                $('#totalEvents').text(data.total_events);
-                $('#totalComputers').text(data.total_computers);
-                $('#onlineComputers').text(data.online_computers);
-                $('#dnsCount').text(data.dns_queries);
-                $('#processCount').text(data.process_creations);
-                $('#networkCount').text(data.network_connections);
-                $('#lastUpdate').text(new Date().toLocaleTimeString());
-            });
-        }
-        
-        function loadEvents() {
-            $.get(API_ENDPOINTS.events + '?limit=20', function(data) {
-                let html = '';
-                data.events.forEach(event => {
-                    let badge = '';
-                    let text = '';
-                    
-                    if (event.event_id === 22 && event.dns_query) {
-                        badge = '<span class="badge bg-info me-2">DNS</span>';
-                        text = `Query: <strong>${event.dns_query}</strong> → ${event.dns_results || 'No results'} (Process: ${event.dns_process || 'Unknown'})`;
-                    }
-                    else if (event.event_id === 1 && event.process_name) {
-                        badge = '<span class="badge bg-success me-2">PROCESS</span>';
-                        const procName = event.process_name.split('\\').pop();
-                        text = `Process: <strong>${procName}</strong> | User: ${event.process_user || 'Unknown'} | Cmd: ${event.command_line ? event.command_line.substring(0, 80) + '...' : 'N/A'}`;
-                    }
-                    else if (event.event_id === 3 && event.dest_ip) {
-                        badge = '<span class="badge bg-danger me-2">NETWORK</span>';
-                        const procName = event.process_name ? event.process_name.split('\\').pop() : 'Unknown';
-                        text = `Connection: <strong>${procName}</strong> → ${event.dest_ip}:${event.dest_port}`;
-                    }
-                    else {
-                        badge = `<span class="badge bg-secondary me-2">${event.event_type}</span>`;
-                        text = event.event_type;
-                    }
-                    
-                    html += `
-                        <div class="event-item">
-                            <div class="small text-muted">${formatTime(event.timestamp)} | ${event.computer}</div>
-                            <div>${badge} ${text}</div>
-                        </div>
-                    `;
-                });
-                $('#eventsList').html(html);
-            });
-        }
-        
-        function loadDNS() {
-            $.get(API_ENDPOINTS.dns + '?limit=20', function(data) {
-                let html = '';
-                data.dns_queries.forEach(query => {
-                    const process = query.dns_process ? query.dns_process.split('\\').pop() : 'Unknown';
-                    html += `
-                        <tr>
-                            <td>${formatTime(query.timestamp)}</td>
-                            <td>${query.computer}</td>
-                            <td><strong>${query.dns_query}</strong></td>
-                            <td>${query.dns_results || 'N/A'}</td>
-                            <td>${process}</td>
-                        </tr>
-                    `;
-                });
-                $('#dnsTable').html(html);
-            });
-        }
-        
-        function loadProcesses() {
-            $.get(API_ENDPOINTS.processes + '?limit=20', function(data) {
-                let html = '';
-                data.process_creations.forEach(proc => {
-                    const processName = proc.process_name ? proc.process_name.split('\\').pop() : 'Unknown';
-                    html += `
-                        <tr>
-                            <td>${formatTime(proc.timestamp)}</td>
-                            <td>${proc.computer}</td>
-                            <td><strong>${processName}</strong></td>
-                            <td>${proc.process_user || 'N/A'}</td>
-                            <td><small>${proc.command_line ? proc.command_line.substring(0, 80) + '...' : 'N/A'}</small></td>
-                        </tr>
-                    `;
-                });
-                $('#processesTable').html(html);
-            });
-        }
-        
-        function loadNetwork() {
-            $.get(API_ENDPOINTS.network + '?limit=20', function(data) {
-                let html = '';
-                data.network_connections.forEach(conn => {
-                    const processName = conn.process_name ? conn.process_name.split('\\').pop() : 'Unknown';
-                    html += `
-                        <tr>
-                            <td>${formatTime(conn.timestamp)}</td>
-                            <td>${conn.computer}</td>
-                            <td>${processName}</td>
-                            <td>${conn.dest_ip}</td>
-                            <td>${conn.dest_port}</td>
-                        </tr>
-                    `;
-                });
-                $('#networkTable').html(html);
-            });
-        }
-        
-        function formatTime(timestamp) {
-            if (!timestamp) return 'N/A';
-            const date = new Date(timestamp);
-            return date.toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'});
-        }
-    </script>
-</body>
-</html>
-'''
-
-# Dodadi gi site funkcii sto nedostavaat (od prethodniot kod)
-def update_computer_status(computer_name, user, ip_address, os_info):
-    conn = get_db_connection()
-    cursor = conn.cursor()
-    try:
-        cursor.execute('''
-            INSERT OR REPLACE INTO computers 
-            (computer_name, user, ip_address, os, last_seen, status)
-            VALUES (?, ?, ?, ?, ?, ?)
-        ''', (computer_name, user, ip_address, os_info, datetime.now().isoformat(), 'online'))
-        conn.commit()
-    except Exception as e:
-        print(f"Error updating computer status: {e}")
-    finally:
-        conn.close()
-
-def parse_sysmon_event_data(event_data):
-    result = {}
-    result['process_name'] = event_data.get('Image', '')
-    result['command_line'] = event_data.get('CommandLine', '')
-    result['process_user'] = event_data.get('User', '')
-    result['parent_process'] = event_data.get('ParentImage', '')
-    result['dns_query'] = event_data.get('QueryName', '')
-    result['dns_results'] = event_data.get('QueryResults', '')
-    result['dns_process'] = event_data.get('Image', '')
-    result['source_ip'] = event_data.get('SourceIp', '')
-    result['dest_ip'] = event_data.get('DestinationIp', '')
-    result['dest_port'] = event_data.get('DestinationPort', '')
-    result['file_path'] = event_data.get('TargetFilename', '')
-    return result
-
-def format_event_for_display(row):
-    event_id = row['event_id']
-    if event_id == 22 and row['dns_query']:
-        return f"DNS Query: {row['dns_query']} → {row['dns_results'] or 'No results'} (Process: {row['dns_process'] or 'Unknown'})"
-    elif event_id == 1 and row['process_name']:
-        proc_name = row['process_name'].split('\\')[-1] if '\\' in row['process_name'] else row['process_name']
-        return f"Process: {proc_name} | User: {row['process_user'] or 'Unknown'}"
-    elif event_id == 3 and row['dest_ip']:
-        proc_name = row['process_name'].split('\\')[-1] if row['process_name'] and '\\' in row['process_name'] else row['process_name'] or 'Unknown'
-        return f"Network: {proc_name} → {row['dest_ip']}:{row['dest_port']}"
-    return f"Event {event_id}: {row['event_type']}"
-
-@app.route('/receive_data', methods=['POST'])
-def receive_data():
-    try:
-        data = request.json
-        if not data:
-            return jsonify({"error": "No data"}), 400
-
-        computer_name = data.get("metadata", {}).get("computer", "Unknown")
-        user = data.get("metadata", {}).get("user", "Unknown")
-
-        conn = get_db_connection()
-        cursor = conn.cursor()
-
-        events_inserted = 0
-
-        # Update computer
-        system_info = data.get("system_info", {})
-        update_computer_status(
-            computer_name,
-            user,
-            system_info.get("ip_address", "Unknown"),
-            system_info.get("os", "Unknown")
-        )
-
-        # Save sysmon events
-        if "sysmon_events" in data:
-            for event in data["sysmon_events"]:
-                try:
-                    event_data = event.get("data", {})
-                    parsed = parse_sysmon_event_data(event_data)
-
-                    cursor.execute('''
-                        INSERT INTO sysmon_events 
-                        (event_id, event_type, timestamp, computer,
-                         process_name, command_line, process_user, parent_process,
-                         dns_query, dns_results, dns_process,
-                         source_ip, dest_ip, dest_port, file_path,
-                         raw_data, received_at)
-                        VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
-                    ''', (
-                        event.get("event_id"),
-                        event.get("event_type"),
-                        event.get("timestamp"),
-                        event.get("computer"),
-                        parsed['process_name'],
-                        parsed['command_line'],
-                        parsed['process_user'],
-                        parsed['parent_process'],
-                        parsed['dns_query'],
-                        parsed['dns_results'],
-                        parsed['dns_process'],
-                        parsed['source_ip'],
-                        parsed['dest_ip'],
-                        parsed['dest_port'],
-                        parsed['file_path'],
-                        json.dumps(event_data),
-                        datetime.now().isoformat()
-                    ))
-                    events_inserted += 1
-                except Exception as e:
-                    print(f"Error inserting event: {e}")
-                    continue
-
-        # Save processes (bez exe_path)
-        if "processes" in data:
-            for proc in data["processes"]:
-                try:
-                    cursor.execute('''
-                        INSERT INTO processes 
-                        (pid, name, user, cpu_percent, memory_mb, cmdline, timestamp, computer, received_at)
-                        VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
-                    ''', (
-                        proc.get("pid"),
-                        proc.get("name"),
-                        proc.get("user"),
-                        proc.get("cpu_percent", 0),
-                        proc.get("memory_mb", 0),
-                        proc.get("cmdline", ""),
-                        datetime.now().isoformat(),
-                        computer_name,
-                        datetime.now().isoformat()
-                    ))
-                except Exception as e:
-                    print(f"Error inserting process: {e}")
-                    continue
-
-        conn.commit()
-        conn.close()
-
-        return jsonify({
-            "message": "OK",
-            "events_inserted": events_inserted
-        }), 200
-
-    except Exception as e:
-        return jsonify({"error": str(e)}), 500
-
-# Write template
-if not os.path.exists('templates'):
-    os.makedirs('templates')
-
-with open('templates/dashboard_fixed.html', 'w', encoding='utf-8') as f:
-    f.write(dashboard_fixed_html)
-
-if __name__ == '__main__':
-    # REINITIALIZE DATABASE
-    init_database()
-
-    print("\n" + "="*60)
-    print("🚀 FIXED SYSMON SERVER")
-    print("="*60)
-    print("📊 Dashboard: http://localhost:5555/")
-    print("📡 Correct API Endpoints:")
-    print("   - GET /api/detailed_events    - All events")
-    print("   - GET /api/dns_queries        - DNS queries")
-    print("   - GET /api/process_creations  - Process executions")
-    print("   - GET /api/network_connections - Network connections")
-    print("   - GET /api/stats              - Statistics")
-    print("   - POST /receive_data          - Receive client data")
-    print("\n✅ Database recreated with correct schema")
-    print("="*60)
-
-    app.run(host='0.0.0.0', port=5555, debug=True)
