Index: .env
===================================================================
--- .env	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ .env	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,1 +1,4 @@
 ADMIN_KEY=admin-key123
+GOOGLE_CLIENT_ID=43542590862-pt18e0hb33o41889bu976oshddoemivs.apps.googleusercontent.com
+JWT_SECRET=ova_43542590862_admin_098765434
+OPENAI_API_KEY=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
Index: lan-frontend/.env
===================================================================
--- lan-frontend/.env	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/.env	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,1 +1,2 @@
-VITE_API_BASE=http://192.168.11.232:5555
+VITE_API_BASE=http://localhost:5555
+VITE_GOOGLE_CLIENT_ID=43542590862-pt18e0hb33o41889bu976oshddoemivs.apps.googleusercontent.com
Index: lan-frontend/package-lock.json
===================================================================
--- lan-frontend/package-lock.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/package-lock.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -9,4 +9,5 @@
       "version": "0.0.0",
       "dependencies": {
+        "@react-oauth/google": "^0.13.4",
         "chart.js": "^4.5.1",
         "react": "^19.2.0",
@@ -1014,4 +1015,14 @@
       "integrity": "sha512-M5UknZPHRu3DEDWoipU6sE8PdkZ6Z/S+v4dD+Ke8IaNlpdSQah50lz1KtcFBa2vsdOnwbbnxJwVM4wty6udA5w==",
       "license": "MIT"
+    },
+    "node_modules/@react-oauth/google": {
+      "version": "0.13.4",
+      "resolved": "https://registry.npmjs.org/@react-oauth/google/-/google-0.13.4.tgz",
+      "integrity": "sha512-hGKyNEH+/PK8M0sFEuo3MAEk0txtHpgs94tDQit+s2LXg7b6z53NtzHfqDvoB2X8O6lGB+FRg80hY//X6hfD+w==",
+      "license": "MIT",
+      "peerDependencies": {
+        "react": ">=16.8.0",
+        "react-dom": ">=16.8.0"
+      }
     },
     "node_modules/@reduxjs/toolkit": {
Index: lan-frontend/package.json
===================================================================
--- lan-frontend/package.json	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/package.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -11,4 +11,5 @@
   },
   "dependencies": {
+    "@react-oauth/google": "^0.13.4",
     "chart.js": "^4.5.1",
     "react": "^19.2.0",
Index: lan-frontend/src/App.jsx
===================================================================
--- lan-frontend/src/App.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/App.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,6 +1,6 @@
-import React from "react";
-import {useEffect, useMemo, useState} from "react";
+import React, {useEffect, useMemo, useState} from "react";
 import "./styles/theme.css";
 
+import Login from "./components/Login";
 import TopBar from "./components/TopBar";
 import ComputerCard from "./components/ComputerCard";
@@ -22,13 +22,40 @@
     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").then((r) => r.json()),
+                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 : []);
@@ -41,7 +68,14 @@
     }
 
+    // on mount: check session
     useEffect(() => {
-        refresh();
-    }, [selectedEnv]);
+        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(() => {
@@ -51,8 +85,15 @@
             .filter((c) => {
                 if (!q) return true;
-                const hay = [c.name, c.user, c.ip, c.os, c.status].filter(Boolean).join(" ").toLowerCase();
+                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 (
@@ -64,5 +105,8 @@
                 onEnvChange={(env) => setSelectedEnv(env)}
                 selectedEnv={selectedEnv}
+                me={me}
+                onLoggedOut={loadMe}
             />
+
 
             {/* STATS */}
@@ -104,5 +148,9 @@
                         />
 
-                        <select className="select" value={status} onChange={(e) => setStatus(e.target.value)}>
+                        <select
+                            className="select"
+                            value={status}
+                            onChange={(e) => setStatus(e.target.value)}
+                        >
                             <option value="">All status</option>
                             <option value="online">Online</option>
@@ -111,5 +159,7 @@
                         </select>
 
-                        <button className="btn primary" onClick={refresh}>Refresh</button>
+                        <button className="btn primary" onClick={refresh}>
+                            Refresh
+                        </button>
                     </div>
                 </div>
@@ -122,8 +172,12 @@
                     <div style={{display: "flex", gap: 10, alignItems: "center"}}>
                         <span className="pill">{filtered.length} computers</span>
-                        <button className="btn" onClick={() => {
-                            setQuery("");
-                            setStatus("");
-                        }}>Reset
+                        <button
+                            className="btn"
+                            onClick={() => {
+                                setQuery("");
+                                setStatus("");
+                            }}
+                        >
+                            Reset
                         </button>
                     </div>
@@ -142,5 +196,7 @@
                         ))}
                         {filtered.length === 0 && (
-                            <div style={{color: "var(--dim)"}}>No computers match filter.</div>
+                            <div style={{color: "var(--dim)"}}>
+                                No computers match filter.
+                            </div>
                         )}
                     </div>
@@ -160,4 +216,15 @@
 
             {/* 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}
@@ -166,5 +233,8 @@
                 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 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/components/AIAssistantDrawer.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,83 +1,138 @@
-import React from "react";
+import React, {useEffect, useRef, useState} from "react";
 
-import { useEffect, useRef, useState } from "react";
+export default function AIAssistantDrawer({
+                                              open,
+                                              onClose,
+                                              computers,
+                                              scope,
+                                              setScope,
+                                              apiBase = "", // ако сакаш можеш да пратиш VITE_API_BASE тука
+                                          }) {
+    const [messages, setMessages] = useState([
+        {
+            role: "assistant",
+            text: "Постави прашање за Sysmon, процеси, мрежа. Можеш да избереш компјутер (scope) горе.",
+        },
+    ]);
+    const [input, setInput] = useState("");
+    const [sending, setSending] = useState(false);
+    const bottomRef = useRef(null);
 
-export default function AIAssistantDrawer({ open, onClose, computers, scope, setScope }) {
-  const [messages, setMessages] = useState([
-    { role: "assistant", text: "Постави прашање за Sysmon, процеси, мрежа. Можеш да избереш компјутер (scope) горе." },
-  ]);
-  const [input, setInput] = useState("");
-  const [sending, setSending] = useState(false);
-  const bottomRef = useRef(null);
+    useEffect(() => {
+        if (open) {
+            // затвори со Escape
+            const onKey = (e) => {
+                if (e.key === "Escape") onClose?.();
+            };
+            window.addEventListener("keydown", onKey);
+            return () => window.removeEventListener("keydown", onKey);
+        }
+    }, [open, onClose]);
 
-  useEffect(() => {
-    if (bottomRef.current) bottomRef.current.scrollIntoView({ behavior: "smooth" });
-  }, [messages, open]);
+    useEffect(() => {
+        if (bottomRef.current) bottomRef.current.scrollIntoView({behavior: "smooth"});
+    }, [messages, open]);
 
-  async function send() {
-    const q = input.trim();
-    if (!q || sending) return;
+    async function send() {
+        const q = input.trim();
+        if (!q || sending) return;
 
-    setInput("");
-    setMessages((m) => [...m, { role: "user", text: q }]);
-    setSending(true);
+        setInput("");
+        setMessages((m) => [...m, {role: "user", text: q}]);
+        setSending(true);
 
-    try {
-      const r = await fetch("/api/chat", {
-        method: "POST",
-        headers: { "Content-Type": "application/json" },
-        body: JSON.stringify({ question: q, computer_name: scope || null }),
-      });
-      const data = await r.json();
-      setMessages((m) => [...m, { role: "assistant", text: data.answer || "(no answer)" }]);
-    } catch (e) {
-      setMessages((m) => [...m, { role: "assistant", text: `Грешка: ${String(e.message || e)}` }]);
-    } finally {
-      setSending(false);
+        try {
+            const base = (apiBase || "").replace(/\/$/, ""); // тргни trailing /
+            const url = `${base}/api/chat`;
+
+            const r = await fetch(url, {
+                method: "POST",
+                headers: {"Content-Type": "application/json"},
+                credentials: "include",
+                body: JSON.stringify({question: q, computer_name: scope || null}),
+            });
+
+
+            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)"},
+            ]);
+        } catch (e) {
+            setMessages((m) => [
+                ...m,
+                {role: "assistant", text: `Грешка: ${String(e?.message || e)}`},
+            ]);
+        } finally {
+            setSending(false);
+        }
     }
-  }
 
-  if (!open) return null;
+    if (!open) return null;
 
-  return (
-    <>
-      <div className="drawer-backdrop" onMouseDown={onClose} />
-      <div className="drawer" onMouseDown={(e) => e.stopPropagation()}>
-        <div className="drawer-head">
-          <div>
-            <div className="drawer-title">🤖 AI Assistant</div>
-            <div className="drawer-sub">Uses /api/chat (RAG over your logs)</div>
-          </div>
-          <button className="btn" onClick={onClose}>Close</button>
-        </div>
+    return (
+        <>
+            <div className="aiDrawer-backdrop" onMouseDown={onClose}/>
 
-        <div style={{ padding: "12px 16px", borderBottom: "1px solid var(--border)" }}>
-          <div className="row">
-            <select className="select" value={scope || ""} onChange={(e) => setScope(e.target.value || null)}>
-              <option value="">All computers</option>
-              {(computers || []).map((c) => (
-                <option key={c.name} value={c.name}>{c.name}</option>
-              ))}
-            </select>
-          </div>
-          <div className="small">Tip: “Top процеси по RAM” или “сомнителни sysmon events”</div>
-        </div>
+            <aside
+                className="aiDrawer"
+                role="dialog"
+                aria-modal="true"
+                onMouseDown={(e) => e.stopPropagation()}
+            >
+                <header className="aiDrawer-head">
+                    <div>
+                        <div className="aiDrawer-title">🤖 AI Assistant</div>
+                        <div className="aiDrawer-sub">RAG over your logs</div>
+                    </div>
 
-        <div className="drawer-body">
-          {messages.map((m, i) => (
-            <div key={i} className={`bubble ${m.role === "user" ? "user" : ""}`}>
-              <div style={{ fontSize: 11, color: "var(--dim)", marginBottom: 6 }}>
-                {m.role === "user" ? "You" : "Assistant"}
-              </div>
-              <div style={{ whiteSpace: "pre-wrap" }}>{m.text}</div>
-            </div>
-          ))}
-          <div ref={bottomRef} />
-        </div>
+                    <button className="aiBtn" onClick={onClose} aria-label="Close">
+                        ✕
+                    </button>
+                </header>
 
-        <div className="drawer-foot">
-          <div className="row">
-            <textarea
-              className="textarea"
+                <div className="aiDrawer-toolbar">
+                    <select
+                        className="aiSelect"
+                        value={scope || ""}
+                        onChange={(e) => setScope(e.target.value || null)}
+                    >
+                        <option value="">All computers</option>
+                        {(computers || []).map((c) => (
+                            <option key={c.name} value={c.name}>
+                                {c.name}
+                            </option>
+                        ))}
+                    </select>
+
+                    <div className="aiHint">
+                        Tip: “Top процеси по RAM” / “сомнителни sysmon events”
+                    </div>
+                </div>
+
+                <main className="aiDrawer-body">
+                    {messages.map((m, i) => (
+                        <div
+                            key={i}
+                            className={`aiMsg ${m.role === "user" ? "user" : "assistant"}`}
+                        >
+                            <div className="aiMsg-meta">{m.role === "user" ? "You" : "Assistant"}</div>
+                            <div className="aiMsg-text">{m.text}</div>
+                        </div>
+                    ))}
+                    <div ref={bottomRef}/>
+                </main>
+
+                <footer className="aiDrawer-foot">
+          <textarea
+              className="aiTextarea"
               rows={2}
               value={input}
@@ -85,17 +140,20 @@
               onChange={(e) => setInput(e.target.value)}
               onKeyDown={(e) => {
-                if (e.key === "Enter" && !e.shiftKey) {
-                  e.preventDefault();
-                  send();
-                }
+                  if (e.key === "Enter" && !e.shiftKey) {
+                      e.preventDefault();
+                      send();
+                  }
               }}
-            />
-            <button className="btn primary" onClick={send} disabled={sending || !input.trim()}>
-              {sending ? "Sending…" : "Send"}
-            </button>
-          </div>
-        </div>
-      </div>
-    </>
-  );
+          />
+                    <button
+                        className="aiBtn aiBtnPrimary"
+                        onClick={send}
+                        disabled={sending || !input.trim()}
+                    >
+                        {sending ? "Sending…" : "Send"}
+                    </button>
+                </footer>
+            </aside>
+        </>
+    );
 }
Index: lan-frontend/src/components/ComputerDetailsModal.jsx
===================================================================
--- lan-frontend/src/components/ComputerDetailsModal.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/components/ComputerDetailsModal.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -2,5 +2,5 @@
 
 function severityForEventId(eventId) {
-  const id = parseInt(eventId, 10);
+  const id = Number.parseInt(String(eventId ?? ""), 10);
   const high = new Set([1, 3, 8, 10]);
   const med = new Set([5, 6, 7, 11, 22]);
@@ -10,15 +10,48 @@
 }
 
+function fmtTime(ts) {
+  if (!ts) return "—";
+  try {
+    return new Date(ts).toLocaleTimeString();
+  } catch {
+    return String(ts);
+  }
+}
+
 export default function ComputerDetailsModal({ open, computer, onClose, onAskAI }) {
   const [tab, setTab] = useState("overview");
   const [loading, setLoading] = useState(false);
   const [details, setDetails] = useState(null);
+  const [error, setError] = useState("");
   const [search, setSearch] = useState("");
 
-  // JSON viewer state
+  // JSON viewer
   const [jsonOpen, setJsonOpen] = useState(false);
   const [jsonTitle, setJsonTitle] = useState("");
   const [jsonData, setJsonData] = useState(null);
 
+  // reset when opening / switching pc
+  useEffect(() => {
+    if (!open) return;
+    setTab("overview");
+    setSearch("");
+    setError("");
+    setDetails(null);
+    setJsonOpen(false);
+    setJsonTitle("");
+    setJsonData(null);
+  }, [open, computer?.name]);
+
+  // close on ESC
+  useEffect(() => {
+    if (!open) return;
+    const onKey = (e) => {
+      if (e.key === "Escape") onClose?.();
+    };
+    window.addEventListener("keydown", onKey);
+    return () => window.removeEventListener("keydown", onKey);
+  }, [open, onClose]);
+
+  // load details
   useEffect(() => {
     if (!open || !computer?.name) return;
@@ -26,11 +59,18 @@
 
     async function load() {
+      setLoading(true);
+      setError("");
       try {
-        setLoading(true);
-        const r = await fetch(`/api/computer/${encodeURIComponent(computer.name)}`);
-        const d = await r.json();
+        const r = await fetch(`/api/computer/${encodeURIComponent(computer.name)}`, {
+          credentials: "include",
+        });
+        const d = await r.json().catch(() => ({}));
+        if (!r.ok) throw new Error(d?.error || `HTTP ${r.status}`);
         if (!cancelled) setDetails(d);
       } catch (e) {
-        console.error("details error", e);
+        if (!cancelled) {
+          setError(String(e?.message || e));
+          setDetails(null);
+        }
       } finally {
         if (!cancelled) setLoading(false);
@@ -51,5 +91,5 @@
       const msg = (ev.message || "").toLowerCase();
       const type = (ev.event_type || "").toLowerCase();
-      const id = String(ev.event_id ?? "");
+      const id = String(ev.event_id ?? "").toLowerCase();
       return msg.includes(q) || type.includes(q) || id.includes(q);
     });
@@ -57,7 +97,6 @@
 
   function openJson(ev) {
-    // server ти враќа: { event_id, event_type, message, timestamp, details }
     setJsonTitle(`Sysmon Event ${ev?.event_id ?? ""} • ${ev?.event_type ?? ""}`);
-    setJsonData(ev?.details ?? ev); // ако нема details, покажи цел event
+    setJsonData(ev?.details ?? ev);
     setJsonOpen(true);
   }
@@ -73,30 +112,230 @@
   return (
     <>
-      <div className="backdrop" onMouseDown={onClose}>
-        <div className="modal" onMouseDown={(e) => e.stopPropagation()}>
-          <div className="modal-head">
+      <style>{`
+        .cdm-backdrop{
+          position: fixed; inset: 0; z-index: 60;
+          background: rgba(2,6,23,0.70);
+          backdrop-filter: blur(6px);
+          display:flex; align-items:center; justify-content:center;
+          padding: 18px;
+        }
+        .cdm-modal{
+          width: min(1100px, 96vw);
+          height: min(86vh, 860px);
+          display:flex; flex-direction:column;
+          border-radius: 18px;
+          background: radial-gradient(900px 420px at 20% 0%, rgba(96,165,250,0.18), transparent 60%),
+                      radial-gradient(700px 350px at 80% 10%, rgba(34,211,238,0.10), transparent 55%),
+                      rgba(10,16,32,0.92);
+          border: 1px solid rgba(96,165,250,0.20);
+          box-shadow: 0 30px 80px rgba(0,0,0,0.45);
+          overflow: hidden;
+        }
+        .cdm-head{
+          padding: 14px 16px;
+          border-bottom: 1px solid rgba(96,165,250,0.16);
+          display:flex; align-items:center; justify-content:space-between; gap:12px;
+        }
+        .cdm-title{ font-size: 16px; font-weight: 900; color: rgba(255,255,255,0.95); }
+        .cdm-sub{ margin-top: 2px; font-size: 12px; color: rgba(191,219,254,0.80); }
+        .cdm-right{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
+        .cdm-tabs{
+          display:flex; gap:8px; padding: 6px;
+          background: rgba(15,23,42,0.45);
+          border: 1px solid rgba(96,165,250,0.18);
+          border-radius: 999px;
+        }
+        .cdm-tab{
+          appearance:none; border: 0;
+          padding: 8px 12px;
+          border-radius: 999px;
+          background: transparent;
+          color: rgba(226,232,240,0.88);
+          font-weight: 900;
+          font-size: 12px;
+          cursor:pointer;
+          transition: background .12s ease, transform .12s ease, color .12s ease;
+        }
+        .cdm-tab:hover{ transform: translateY(-1px); background: rgba(30,41,59,0.55); }
+        .cdm-tab.active{
+          background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(56,189,248,0.65));
+          color: rgba(5,12,24,0.95);
+        }
+        .cdm-btn{
+          appearance:none;
+          border: 1px solid rgba(96,165,250,0.22);
+          background: rgba(15,23,42,0.55);
+          color: rgba(255,255,255,0.92);
+          padding: 9px 12px;
+          border-radius: 12px;
+          font-weight: 900;
+          font-size: 13px;
+          cursor: pointer;
+          transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
+          box-shadow: 0 8px 20px rgba(0,0,0,0.18);
+        }
+        .cdm-btn:hover{ transform: translateY(-1px); background: rgba(30,41,59,0.65); border-color: rgba(96,165,250,0.38); }
+        .cdm-btn:disabled{ opacity: .6; cursor: not-allowed; transform:none; }
+        .cdm-btn.primary{
+          background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(56,189,248,0.65));
+          border-color: rgba(147,197,253,0.35);
+          color: rgba(5,12,24,0.95);
+        }
+
+        /* body scroll zone */
+        .cdm-body{
+          flex: 1;
+          display:flex;
+          flex-direction:column;
+          min-height: 0; /* important for scroll */
+        }
+        .cdm-content{
+          flex: 1;
+          min-height: 0;
+          overflow: auto;
+          padding: 14px 16px 18px;
+        }
+
+        .cdm-panel{
+          border-radius: 16px;
+          background: rgba(15,23,42,0.55);
+          border: 1px solid rgba(96,165,250,0.16);
+          overflow: hidden;
+        }
+        .cdm-panel-head{
+          padding: 12px 12px;
+          display:flex; align-items:center; justify-content:space-between; gap:10px;
+          border-bottom: 1px solid rgba(96,165,250,0.14);
+        }
+        .cdm-panel-title{ color: rgba(255,255,255,0.92); font-weight: 900; }
+        .cdm-panel-body{ padding: 12px; }
+
+        /* table area scroll fix */
+        .cdm-table-wrap{
+          border-radius: 14px;
+          border: 1px solid rgba(148,163,184,0.18);
+          background: rgba(2,6,23,0.28);
+          overflow: hidden;
+        }
+        .cdm-table-scroll{
+          max-height: 52vh;
+          overflow: auto;
+        }
+        table{ width: 100%; border-collapse: collapse; }
+        thead th{
+          position: sticky; top: 0;
+          background: rgba(10,16,32,0.95);
+          backdrop-filter: blur(8px);
+          text-align:left;
+          font-size: 12px;
+          color: rgba(191,219,254,0.88);
+          padding: 10px 10px;
+          border-bottom: 1px solid rgba(96,165,250,0.16);
+          z-index: 1;
+        }
+        tbody td{
+          padding: 10px 10px;
+          border-bottom: 1px solid rgba(148,163,184,0.12);
+          color: rgba(226,232,240,0.92);
+          font-size: 13px;
+          vertical-align: top;
+        }
+        tbody tr:hover td{ background: rgba(30,41,59,0.35); }
+
+        .cdm-pill{
+          display:inline-flex; align-items:center; gap:8px;
+          padding: 6px 10px;
+          border-radius: 999px;
+          background: rgba(30,41,59,0.55);
+          border: 1px solid rgba(96,165,250,0.18);
+          color: rgba(255,255,255,0.9);
+          font-weight: 900;
+          font-size: 12px;
+        }
+        .cdm-input{
+          width: min(420px, 45vw);
+          padding: 9px 12px;
+          border-radius: 12px;
+          border: 1px solid rgba(96,165,250,0.18);
+          background: rgba(2,6,23,0.35);
+          color: rgba(255,255,255,0.92);
+          outline: none;
+          font-weight: 800;
+        }
+        .cdm-input::placeholder{ color: rgba(148,163,184,0.75); }
+
+        .cdm-badge{
+          display:inline-flex; align-items:center; justify-content:center;
+          padding: 5px 10px;
+          border-radius: 999px;
+          font-weight: 1000;
+          font-size: 11px;
+          letter-spacing: .3px;
+          border: 1px solid rgba(148,163,184,0.18);
+          background: rgba(15,23,42,0.5);
+          color: rgba(226,232,240,0.95);
+        }
+        .cdm-badge.high{ border-color: rgba(239,68,68,0.35); color: rgba(254,202,202,0.95); }
+        .cdm-badge.medium{ border-color: rgba(251,191,36,0.35); color: rgba(254,243,199,0.95); }
+        .cdm-badge.low{ border-color: rgba(34,197,94,0.25); color: rgba(220,252,231,0.95); }
+
+        /* JSON modal */
+        .cdm-json-modal{
+          width: min(980px, 96vw);
+          height: min(82vh, 860px);
+          display:flex; flex-direction:column;
+          border-radius: 18px;
+          background: rgba(10,16,32,0.94);
+          border: 1px solid rgba(96,165,250,0.20);
+          overflow:hidden;
+        }
+        .cdm-json-body{
+          flex:1; min-height:0; overflow:auto; padding: 14px 16px 18px;
+        }
+        .cdm-pre{
+          margin: 0;
+          padding: 14px;
+          border-radius: 12px;
+          border: 1px solid rgba(148,163,184,0.22);
+          background: rgba(2,6,23,0.35);
+          color: rgba(226,232,240,0.95);
+          font-size: 12px;
+          line-height: 1.5;
+          white-space: pre-wrap;
+          word-break: break-word;
+        }
+      `}</style>
+
+      <div className="cdm-backdrop" onMouseDown={onClose}>
+        <div className="cdm-modal" onMouseDown={(e) => e.stopPropagation()}>
+          <div className="cdm-head">
             <div>
-              <div className="modal-title">{computer.name}</div>
-              <div className="modal-sub">
-                {computer.ip || "—"} • {computer.user || "—"} • {computer.status || "—"}
+              <div className="cdm-title">{computer?.name || "Computer"}</div>
+              <div className="cdm-sub">
+                {computer?.ip || "—"} • {computer?.user || "—"} • {computer?.status || "—"}
               </div>
             </div>
 
-            <div style={{ display: "flex", gap: 10, alignItems: "center" }}>
-              <div className="tabs">
-                <button className={`tab ${tab === "overview" ? "active" : ""}`} onClick={() => setTab("overview")}>
+            <div className="cdm-right">
+              <button className="cdm-btn primary" onClick={() => onAskAI?.(computer?.name)} disabled={!computer?.name}>
+                Ask AI
+              </button>
+
+              <div className="cdm-tabs">
+                <button className={`cdm-tab ${tab === "overview" ? "active" : ""}`} onClick={() => setTab("overview")}>
                   Overview
                 </button>
-                <button className={`tab ${tab === "sysmon" ? "active" : ""}`} onClick={() => setTab("sysmon")}>
+                <button className={`cdm-tab ${tab === "sysmon" ? "active" : ""}`} onClick={() => setTab("sysmon")}>
                   Sysmon
                 </button>
-                <button className={`tab ${tab === "processes" ? "active" : ""}`} onClick={() => setTab("processes")}>
+                <button className={`cdm-tab ${tab === "processes" ? "active" : ""}`} onClick={() => setTab("processes")}>
                   Processes
                 </button>
-                <button className={`tab ${tab === "network" ? "active" : ""}`} onClick={() => setTab("network")}>
+                <button className={`cdm-tab ${tab === "network" ? "active" : ""}`} onClick={() => setTab("network")}>
                   Network
                 </button>
               </div>
-              <button className="btn" onClick={onClose}>
+
+              <button className="cdm-btn" onClick={onClose}>
                 Close
               </button>
@@ -104,276 +343,240 @@
           </div>
 
-          <div style={{ padding: 16 }}>
-            {loading && <div style={{ color: "#94a3b8" }}>Loading…</div>}
-
-            {!loading && details && tab === "overview" && (
-              <div className="panel">
-                <div className="panel-head">
-                  <div className="panel-title">System Overview</div>
-                  <button className="btn primary" onClick={() => onAskAI(computer.name)}>
-                    Ask AI about this PC
-                  </button>
+          <div className="cdm-body">
+            <div className="cdm-content">
+              {loading && <div style={{ color: "rgba(148,163,184,0.95)" }}>Loading…</div>}
+
+              {!loading && error && (
+                <div className="cdm-panel" style={{ borderColor: "rgba(239,68,68,0.35)" }}>
+                  <div className="cdm-panel-head">
+                    <div className="cdm-panel-title">Error</div>
+                  </div>
+                  <div className="cdm-panel-body" style={{ color: "rgba(254,202,202,0.95)" }}>
+                    {error}
+                  </div>
                 </div>
-                <div className="panel-body" style={{ display: "grid", gap: 10 }}>
-                  <div>
-                    <b>User:</b> {details.computer?.user}
-                  </div>
-                  <div>
-                    <b>IP:</b> {details.computer?.ip}
-                  </div>
-                  <div>
-                    <b>OS:</b> {details.computer?.os}
-                  </div>
-                  <div>
-                    <b>First seen:</b> {details.computer?.first_seen}
-                  </div>
-                  <div>
-                    <b>Last seen:</b> {details.computer?.last_seen}
-                  </div>
-                  <div>
-                    <b>Total logs:</b> {details.computer?.total_logs}
+              )}
+
+              {!loading && !error && details && tab === "overview" && (
+                <div className="cdm-panel">
+                  <div className="cdm-panel-head">
+                    <div className="cdm-panel-title">System Overview</div>
+                    <span className="cdm-pill">Env: {details.computer?.env_name || "default"}</span>
+                  </div>
+                  <div className="cdm-panel-body" style={{ display: "grid", gap: 10 }}>
+                    <div><b>User:</b> {details.computer?.user || "—"}</div>
+                    <div><b>IP:</b> {details.computer?.ip || "—"}</div>
+                    <div><b>OS:</b> {details.computer?.os || "—"}</div>
+                    <div><b>First seen:</b> {details.computer?.first_seen || "—"}</div>
+                    <div><b>Last seen:</b> {details.computer?.last_seen || "—"}</div>
+                    <div><b>Total logs:</b> {details.computer?.total_logs ?? "—"}</div>
                   </div>
                 </div>
-              </div>
-            )}
-
-            {!loading && details && tab === "sysmon" && (
-              <div className="panel">
-                <div className="panel-head" style={{ alignItems: "center" }}>
-                  <div className="panel-title">Sysmon Events</div>
-                  <div style={{ display: "flex", gap: 10, alignItems: "center" }}>
-                    <span className="pill">{filteredSysmon.length} events</span>
-                    <input
-                      className="input"
-                      style={{ maxWidth: 380 }}
-                      placeholder="Search by id / type / message…"
-                      value={search}
-                      onChange={(e) => setSearch(e.target.value)}
-                    />
+              )}
+
+              {!loading && !error && details && tab === "sysmon" && (
+                <div className="cdm-panel">
+                  <div className="cdm-panel-head">
+                    <div className="cdm-panel-title">Sysmon Events</div>
+                    <div style={{ display: "flex", gap: 10, alignItems: "center" }}>
+                      <span className="cdm-pill">{filteredSysmon.length} events</span>
+                      <input
+                        className="cdm-input"
+                        placeholder="Search by id / type / message…"
+                        value={search}
+                        onChange={(e) => setSearch(e.target.value)}
+                      />
+                    </div>
+                  </div>
+
+                  <div className="cdm-panel-body">
+                    <div className="cdm-table-wrap">
+                      <div className="cdm-table-scroll">
+                        <table>
+                          <thead>
+                            <tr>
+                              <th style={{ width: 90 }}>Time</th>
+                              <th style={{ width: 70 }}>ID</th>
+                              <th style={{ width: 190 }}>Type</th>
+                              <th style={{ width: 110 }}>Severity</th>
+                              <th>Message</th>
+                              <th style={{ width: 90 }}>View</th>
+                            </tr>
+                          </thead>
+                          <tbody>
+                            {filteredSysmon.slice(0, 400).map((ev, idx) => {
+                              const sev = severityForEventId(ev.event_id);
+                              return (
+                                <tr key={idx}>
+                                  <td>{fmtTime(ev.timestamp)}</td>
+                                  <td><b>{ev.event_id ?? "—"}</b></td>
+                                  <td>{ev.event_type || "—"}</td>
+                                  <td><span className={`cdm-badge ${sev}`}>{sev.toUpperCase()}</span></td>
+                                  <td style={{ fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace", fontSize: 12 }}>
+                                    {(ev.message || "").slice(0, 220)}
+                                  </td>
+                                  <td>
+                                    <button className="cdm-btn" onClick={() => openJson(ev)}>
+                                      View
+                                    </button>
+                                  </td>
+                                </tr>
+                              );
+                            })}
+
+                            {filteredSysmon.length === 0 && (
+                              <tr>
+                                <td colSpan="6" style={{ color: "rgba(148,163,184,0.95)" }}>
+                                  No sysmon events.
+                                </td>
+                              </tr>
+                            )}
+                          </tbody>
+                        </table>
+                      </div>
+                    </div>
+                    {filteredSysmon.length > 400 && (
+                      <div style={{ marginTop: 10, color: "rgba(148,163,184,0.95)", fontSize: 12 }}>
+                        Showing first 400 (for speed).
+                      </div>
+                    )}
                   </div>
                 </div>
-
-                <div className="panel-body">
-                  <div className="table-wrap">
-                    <table>
-                      <thead>
-                        <tr>
-                          <th style={{ width: 90 }}>Time</th>
-                          <th style={{ width: 70 }}>ID</th>
-                          <th style={{ width: 170 }}>Type</th>
-                          <th style={{ width: 110 }}>Severity</th>
-                          <th>Message</th>
-                          <th style={{ width: 90 }}>View</th>
-                        </tr>
-                      </thead>
-                      <tbody>
-                        {filteredSysmon.slice(0, 200).map((ev, idx) => {
-                          const sev = severityForEventId(ev.event_id);
-                          return (
-                            <tr key={idx}>
-                              <td>{ev.timestamp ? new Date(ev.timestamp).toLocaleTimeString() : "—"}</td>
-                              <td>
-                                <b>{ev.event_id}</b>
-                              </td>
-                              <td>{ev.event_type}</td>
-                              <td>
-                                <span className={`badge ${sev}`}>{sev.toUpperCase()}</span>
-                              </td>
-                              <td
-                                style={{
-                                  fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
-                                  fontSize: 12,
-                                }}
-                              >
-                                {(ev.message || "").slice(0, 140)}
-                              </td>
-                              <td>
-                                <button className="btn" onClick={() => openJson(ev)}>
-                                  View
-                                </button>
-                              </td>
+              )}
+
+              {!loading && !error && details && tab === "processes" && (
+                <div className="cdm-panel">
+                  <div className="cdm-panel-head">
+                    <div className="cdm-panel-title">Recent Processes</div>
+                    <span className="cdm-pill">{(details.recent_processes || []).length} rows</span>
+                  </div>
+
+                  <div className="cdm-panel-body">
+                    <div className="cdm-table-wrap">
+                      <div className="cdm-table-scroll">
+                        <table>
+                          <thead>
+                            <tr>
+                              <th style={{ width: 90 }}>Time</th>
+                              <th style={{ width: 80 }}>PID</th>
+                              <th style={{ width: 200 }}>Name</th>
+                              <th style={{ width: 140 }}>User</th>
+                              <th style={{ width: 90 }}>CPU%</th>
+                              <th style={{ width: 110 }}>RAM MB</th>
+                              <th>Cmdline</th>
                             </tr>
-                          );
-                        })}
-
-                        {filteredSysmon.length === 0 && (
-                          <tr>
-                            <td colSpan="6" style={{ color: "#94a3b8" }}>
-                              No sysmon events.
-                            </td>
-                          </tr>
-                        )}
-                      </tbody>
-                    </table>
-                  </div>
-
-                  {filteredSysmon.length > 200 && (
-                    <div style={{ marginTop: 10, color: "#94a3b8", fontSize: 12 }}>
-                      Showing first 200 (for speed).
+                          </thead>
+                          <tbody>
+                            {(details.recent_processes || []).slice(0, 400).map((p, idx) => (
+                              <tr key={idx}>
+                                <td>{fmtTime(p.timestamp)}</td>
+                                <td><b>{p.pid ?? "—"}</b></td>
+                                <td>{p.name || "—"}</td>
+                                <td>{p.username || "—"}</td>
+                                <td>{p.cpu_percent ?? 0}</td>
+                                <td>{p.memory_mb ?? 0}</td>
+                                <td style={{ fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace", fontSize: 12 }}>
+                                  {(p.cmdline || "").slice(0, 220)}
+                                </td>
+                              </tr>
+                            ))}
+                            {(details.recent_processes || []).length === 0 && (
+                              <tr>
+                                <td colSpan="7" style={{ color: "rgba(148,163,184,0.95)" }}>
+                                  No process data.
+                                </td>
+                              </tr>
+                            )}
+                          </tbody>
+                        </table>
+                      </div>
                     </div>
-                  )}
+                  </div>
                 </div>
-              </div>
-            )}
-
-            {!loading && details && tab === "processes" && (
-              <div className="panel">
-                <div className="panel-head">
-                  <div className="panel-title">Recent Processes</div>
+              )}
+
+              {!loading && !error && details && tab === "network" && (
+                <div className="cdm-panel">
+                  <div className="cdm-panel-head">
+                    <div className="cdm-panel-title">Network Connections</div>
+                    <span className="cdm-pill">{(details.network_connections || []).length} rows</span>
+                  </div>
+
+                  <div className="cdm-panel-body">
+                    <div className="cdm-table-wrap">
+                      <div className="cdm-table-scroll">
+                        <table>
+                          <thead>
+                            <tr>
+                              <th style={{ width: 90 }}>Time</th>
+                              <th style={{ width: 80 }}>PID</th>
+                              <th style={{ width: 180 }}>Process</th>
+                              <th style={{ width: 220 }}>Local</th>
+                              <th style={{ width: 220 }}>Remote</th>
+                              <th style={{ width: 140 }}>Status</th>
+                            </tr>
+                          </thead>
+                          <tbody>
+                            {(details.network_connections || []).slice(0, 400).map((n, idx) => (
+                              <tr key={idx}>
+                                <td>{fmtTime(n.timestamp)}</td>
+                                <td><b>{n.pid ?? "—"}</b></td>
+                                <td>{n.process_name || "—"}</td>
+                                <td style={{ fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace", fontSize: 12 }}>
+                                  {n.local_address || "—"}
+                                </td>
+                                <td style={{ fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace", fontSize: 12 }}>
+                                  {n.remote_address || "—"}
+                                </td>
+                                <td>{n.status || "—"}</td>
+                              </tr>
+                            ))}
+                            {(details.network_connections || []).length === 0 && (
+                              <tr>
+                                <td colSpan="6" style={{ color: "rgba(148,163,184,0.95)" }}>
+                                  No network data.
+                                </td>
+                              </tr>
+                            )}
+                          </tbody>
+                        </table>
+                      </div>
+                    </div>
+                  </div>
                 </div>
-                <div className="panel-body">
-                  <div className="table-wrap">
-                    <table>
-                      <thead>
-                        <tr>
-                          <th>Time</th>
-                          <th>PID</th>
-                          <th>Name</th>
-                          <th>User</th>
-                          <th>CPU%</th>
-                          <th>RAM MB</th>
-                          <th>Cmdline</th>
-                        </tr>
-                      </thead>
-                      <tbody>
-                        {(details.recent_processes || []).slice(0, 150).map((p, idx) => (
-                          <tr key={idx}>
-                            <td>{p.timestamp ? new Date(p.timestamp).toLocaleTimeString() : "—"}</td>
-                            <td>
-                              <b>{p.pid}</b>
-                            </td>
-                            <td>{p.name}</td>
-                            <td>{p.username || "—"}</td>
-                            <td>{p.cpu_percent ?? 0}</td>
-                            <td>{p.memory_mb ?? 0}</td>
-                            <td
-                              style={{
-                                fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
-                                fontSize: 12,
-                              }}
-                            >
-                              {(p.cmdline || "").slice(0, 120)}
-                            </td>
-                          </tr>
-                        ))}
-                        {(details.recent_processes || []).length === 0 && (
-                          <tr>
-                            <td colSpan="7" style={{ color: "#94a3b8" }}>
-                              No process data.
-                            </td>
-                          </tr>
-                        )}
-                      </tbody>
-                    </table>
-                  </div>
-                </div>
-              </div>
-            )}
-
-            {!loading && details && tab === "network" && (
-              <div className="panel">
-                <div className="panel-head">
-                  <div className="panel-title">Network Connections</div>
-                </div>
-                <div className="panel-body">
-                  <div className="table-wrap">
-                    <table>
-                      <thead>
-                        <tr>
-                          <th>Time</th>
-                          <th>PID</th>
-                          <th>Process</th>
-                          <th>Local</th>
-                          <th>Remote</th>
-                          <th>Status</th>
-                        </tr>
-                      </thead>
-                      <tbody>
-                        {(details.network_connections || []).slice(0, 150).map((n, idx) => (
-                          <tr key={idx}>
-                            <td>{n.timestamp ? new Date(n.timestamp).toLocaleTimeString() : "—"}</td>
-                            <td>
-                              <b>{n.pid}</b>
-                            </td>
-                            <td>{n.process_name || "—"}</td>
-                            <td
-                              style={{
-                                fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
-                                fontSize: 12,
-                              }}
-                            >
-                              {n.local_address || "—"}
-                            </td>
-                            <td
-                              style={{
-                                fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
-                                fontSize: 12,
-                              }}
-                            >
-                              {n.remote_address || "—"}
-                            </td>
-                            <td>{n.status || "—"}</td>
-                          </tr>
-                        ))}
-                        {(details.network_connections || []).length === 0 && (
-                          <tr>
-                            <td colSpan="6" style={{ color: "#94a3b8" }}>
-                              No network data.
-                            </td>
-                          </tr>
-                        )}
-                      </tbody>
-                    </table>
-                  </div>
-                </div>
-              </div>
-            )}
-
-            {!loading && !details && <div style={{ color: "#94a3b8" }}>No details.</div>}
+              )}
+
+              {!loading && !error && !details && (
+                <div style={{ color: "rgba(148,163,184,0.95)" }}>No details.</div>
+              )}
+            </div>
           </div>
         </div>
       </div>
 
-      {/* JSON VIEWER MODAL */}
+      {/* JSON VIEWER */}
       {jsonOpen && (
-        <div className="backdrop" onMouseDown={closeJson}>
-          <div className="modal" onMouseDown={(e) => e.stopPropagation()} style={{ width: "min(900px, 96vw)" }}>
-            <div className="modal-head">
+        <div className="cdm-backdrop" onMouseDown={closeJson}>
+          <div className="cdm-json-modal" onMouseDown={(e) => e.stopPropagation()}>
+            <div className="cdm-head">
               <div>
-                <div className="modal-title">View JSON</div>
-                <div className="modal-sub">{jsonTitle}</div>
+                <div className="cdm-title">View JSON</div>
+                <div className="cdm-sub">{jsonTitle}</div>
               </div>
-              <div style={{ display: "flex", gap: 10 }}>
+              <div className="cdm-right">
                 <button
-                  className="btn"
-                  onClick={() => {
-                    const txt = JSON.stringify(jsonData ?? {}, null, 2);
-                    navigator.clipboard.writeText(txt);
-                  }}
+                  className="cdm-btn"
+                  onClick={() => navigator.clipboard.writeText(JSON.stringify(jsonData ?? {}, null, 2))}
                 >
                   Copy
                 </button>
-                <button className="btn" onClick={closeJson}>
+                <button className="cdm-btn" onClick={closeJson}>
                   Close
                 </button>
               </div>
             </div>
-            <div style={{ padding: 16 }}>
-              <pre
-                style={{
-                  margin: 0,
-                  maxHeight: "70vh",
-                  overflow: "auto",
-                  padding: 14,
-                  borderRadius: 12,
-                  border: "1px solid rgba(148,163,184,0.25)",
-                  background: "rgba(2,6,23,0.35)",
-                  color: "rgba(226,232,240,0.95)",
-                  fontSize: 12,
-                  lineHeight: 1.5,
-                }}
-              >
-                {JSON.stringify(jsonData ?? {}, null, 2)}
-              </pre>
+
+            <div className="cdm-json-body">
+              <pre className="cdm-pre">{JSON.stringify(jsonData ?? {}, null, 2)}</pre>
             </div>
           </div>
Index: lan-frontend/src/components/Login.jsx
===================================================================
--- lan-frontend/src/components/Login.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ lan-frontend/src/components/Login.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -0,0 +1,29 @@
+import React from "react";
+import { GoogleLogin } from "@react-oauth/google";
+
+export default function Login({ onDone }) {
+  return (
+    <div style={{ display: "grid", placeItems: "center", minHeight: "100vh" }}>
+      <div className="panel" style={{ maxWidth: 460, width: "92%" }}>
+        <div className="panel-head">
+          <div className="panel-title">Sign in to netIntel</div>
+        </div>
+        <div className="panel-body">
+          <GoogleLogin
+            onSuccess={async (cred) => {
+              const r = await fetch("/api/auth/google", {
+                method: "POST",
+                headers: { "Content-Type": "application/json" },
+                credentials: "include",
+                body: JSON.stringify({ credential: cred.credential }),
+              });
+              if (r.ok) onDone?.();
+              else console.error(await r.json());
+            }}
+            onError={() => console.error("Google login failed")}
+          />
+        </div>
+      </div>
+    </div>
+  );
+}
Index: lan-frontend/src/components/TopBar.jsx
===================================================================
--- lan-frontend/src/components/TopBar.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/components/TopBar.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,14 +1,19 @@
 import React, { useEffect, useMemo, useState } from "react";
-
-export default function TopBar({ onOpenAI, onRefresh, lastUpdated, onEnvChange }) {
+import logo from "../assets/ChatGPT_Image_Jan_21__2026__01_20_04_PM-removebg-preview (1).png";
+
+export default function TopBar({
+  onOpenAI,
+  onRefresh,
+  lastUpdated,
+  onEnvChange,
+  selectedEnv: selectedEnvProp, // optional (ако сакаш да го контролира App)
+  me,
+  onLoggedOut, // optional callback (App loadMe)
+}) {
   const [open, setOpen] = useState(false);
-
-  // admin auth
-  const [adminKey, setAdminKey] = useState("");
-  const [adminSession, setAdminSession] = useState("");
 
   // env + tokens
   const [envs, setEnvs] = useState(["default"]);
-  const [selectedEnv, setSelectedEnv] = useState("default");
+  const [selectedEnv, setSelectedEnv] = useState(selectedEnvProp || "default");
   const [newEnvName, setNewEnvName] = useState("");
   const [token, setToken] = useState("");
@@ -17,8 +22,16 @@
   const [error, setError] = useState("");
 
-  // helper: fetch env list after login
-  async function loadEnvironments(session) {
+
+  // keep in sync ако App праќа selectedEnv prop
+  useEffect(() => {
+    if (selectedEnvProp && selectedEnvProp !== selectedEnv) {
+      setSelectedEnv(selectedEnvProp);
+    }
+    // eslint-disable-next-line react-hooks/exhaustive-deps
+  }, [selectedEnvProp]);
+
+  async function loadEnvironments() {
     const r = await fetch("/api/admin/environments", {
-      headers: { "X-Admin-Session": session },
+      credentials: "include",
     });
     const data = await r.json();
@@ -28,5 +41,4 @@
     setEnvs(list);
 
-    // ако тековниот не постои, стави првиот од листата
     if (!list.includes(selectedEnv)) {
       setSelectedEnv(list[0]);
@@ -35,46 +47,8 @@
   }
 
-  async function login() {
-    setError("");
-    setToken("");
-
-    if (!adminKey.trim()) {
-      setError("Внеси admin key.");
-      return;
-    }
-
-    setBusy(true);
-    try {
-      const r = await fetch("/api/admin/login", {
-        method: "POST",
-        headers: { "Content-Type": "application/json" },
-        body: JSON.stringify({ admin_key: adminKey.trim() }),
-      });
-      const data = await r.json();
-      if (!r.ok) throw new Error(data?.error || `HTTP ${r.status}`);
-
-      const session = data.session;
-      setAdminSession(session);
-      await loadEnvironments(session);
-    } catch (e) {
-      setError(String(e.message || e));
-    } finally {
-      setBusy(false);
-    }
-  }
-
-  function logout() {
-    setAdminSession("");
-    setAdminKey("");
-    setToken("");
-    setError("");
-    setEnvs(["default"]);
-    setSelectedEnv("default");
-    onEnvChange?.("default");
-  }
-
   async function createEnvironment() {
     setError("");
     setToken("");
+
     if (!newEnvName.trim()) {
       setError("Внеси име за environment.");
@@ -86,8 +60,6 @@
       const r = await fetch("/api/admin/environments", {
         method: "POST",
-        headers: {
-          "Content-Type": "application/json",
-          "X-Admin-Session": adminSession,
-        },
+        headers: { "Content-Type": "application/json" },
+        credentials: "include",
         body: JSON.stringify({ name: newEnvName.trim() }),
       });
@@ -96,6 +68,5 @@
       if (!r.ok) throw new Error(data?.error || `HTTP ${r.status}`);
 
-      // reload list, select new env
-      await loadEnvironments(adminSession);
+      await loadEnvironments();
       setSelectedEnv(newEnvName.trim());
       onEnvChange?.(newEnvName.trim());
@@ -120,8 +91,6 @@
       const r = await fetch("/api/admin/tokens", {
         method: "POST",
-        headers: {
-          "Content-Type": "application/json",
-          "X-Admin-Session": adminSession,
-        },
+        headers: { "Content-Type": "application/json" },
+        credentials: "include",
         body: JSON.stringify({ env: selectedEnv }),
       });
@@ -147,4 +116,15 @@
     setToken("");
     onEnvChange?.(val);
+  }
+
+  async function logout() {
+    try {
+      await fetch("/api/auth/logout", { method: "POST", credentials: "include" });
+    } catch {}
+    onLoggedOut?.();
+    // reset local admin modal state
+    setOpen(false);
+    setToken("");
+    setError("");
   }
 
@@ -161,228 +141,63 @@
     <>
       <style>{`
-        /* ---- TopBar scoped theme ---- */
-        .tb-wrap{
-          position: sticky;
-          top: 0;
-          z-index: 20;
-          backdrop-filter: blur(10px);
+        .tb-wrap{ position: sticky; top: 0; z-index: 20; backdrop-filter: blur(10px);
           background: linear-gradient(180deg, rgba(10,16,32,0.92), rgba(10,16,32,0.75));
-          border-bottom: 1px solid rgba(96,165,250,0.18);
-        }
-        .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;
-          background: rgba(30,41,59,0.65);
-          border: 1px solid rgba(96,165,250,0.22);
-          color: rgba(255,255,255,0.9);
-          font-weight: 800;
-          font-size: 12px;
-          box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
-        }
-        .tb-pill .dot{
-          width: 8px;
-          height: 8px;
-          border-radius: 999px;
-          background: rgba(96,165,250,0.95);
-          box-shadow: 0 0 0 3px rgba(96,165,250,0.15);
-        }
-
-        .tb-btn{
-          appearance: none;
-          border: 1px solid rgba(96,165,250,0.22);
-          background: rgba(15,23,42,0.55);
-          color: rgba(255,255,255,0.9);
-          padding: 9px 12px;
-          border-radius: 12px;
-          font-weight: 800;
-          font-size: 13px;
-          cursor: pointer;
-          transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
-          box-shadow: 0 8px 20px rgba(0,0,0,0.18);
-        }
-        .tb-btn:hover{
-          transform: translateY(-1px);
-          background: rgba(30,41,59,0.65);
-          border-color: rgba(96,165,250,0.38);
-        }
-        .tb-btn:disabled{
-          opacity: .6;
-          cursor: not-allowed;
-          transform: none;
-        }
-        .tb-btn.primary{
-          background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(56,189,248,0.7));
-          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));
-        }
-
-        /* ---- Modal ---- */
-        .tb-backdrop{
-          position: fixed;
-          inset: 0;
-          background: rgba(2,6,23,0.72);
-          backdrop-filter: blur(6px);
-          display:flex;
-          align-items: center;
-          justify-content: center;
-          padding: 20px;
-          z-index: 50;
-        }
-        .tb-modal{
-          width: min(860px, 96vw);
-          border-radius: 18px;
-          background:
-            radial-gradient(900px 420px at 20% 0%, rgba(96,165,250,0.18), transparent 60%),
-            radial-gradient(700px 350px at 80% 10%, rgba(34,211,238,0.10), transparent 55%),
-            rgba(10,16,32,0.92);
-          border: 1px solid rgba(96,165,250,0.22);
-          box-shadow: 0 30px 80px rgba(0,0,0,0.45);
-          overflow: hidden;
-        }
-        .tb-modal-head{
-          padding: 16px 18px;
-          display:flex;
-          align-items: center;
-          justify-content: space-between;
-          gap: 10px;
-          border-bottom: 1px solid rgba(96,165,250,0.18);
-        }
-        .tb-modal-title{
-          color: rgba(255,255,255,0.96);
-          font-weight: 900;
-          letter-spacing: .3px;
-        }
-        .tb-modal-sub{
-          color: rgba(191,219,254,0.8);
-          font-size: 12px;
-          margin-top: 2px;
-        }
-        .tb-grid{
-          padding: 16px;
-          display:grid;
-          gap: 12px;
-        }
-        .tb-card{
-          border-radius: 16px;
-          background: rgba(15,23,42,0.55);
-          border: 1px solid rgba(96,165,250,0.18);
-          padding: 14px;
-        }
-        .tb-card-head{
-          display:flex;
-          align-items:center;
-          justify-content: space-between;
-          margin-bottom: 10px;
-        }
-        .tb-card-title{
-          color: rgba(255,255,255,0.92);
-          font-weight: 900;
-        }
-        .tb-help{
-          color: rgba(148,163,184,0.95);
-          font-size: 12px;
-          margin-top: 8px;
-          line-height: 1.35;
-        }
-        .tb-input, .tb-select{
-          width: 100%;
-          padding: 10px 12px;
-          border-radius: 12px;
-          border: 1px solid rgba(96,165,250,0.18);
-          background: rgba(2,6,23,0.35);
-          color: rgba(255,255,255,0.92);
-          outline: none;
-          font-weight: 700;
-        }
+          border-bottom: 1px solid rgba(96,165,250,0.18); }
+        .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;
+          background: rgba(30,41,59,0.65); border: 1px solid rgba(96,165,250,0.22);
+          color: rgba(255,255,255,0.9); font-weight: 800; font-size: 12px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); }
+        .tb-pill .dot{ width: 8px; height: 8px; border-radius: 999px; background: rgba(96,165,250,0.95);
+          box-shadow: 0 0 0 3px rgba(96,165,250,0.15); }
+        .tb-btn{ appearance: none; border: 1px solid rgba(96,165,250,0.22); background: rgba(15,23,42,0.55);
+          color: rgba(255,255,255,0.9); padding: 9px 12px; border-radius: 12px; font-weight: 800;
+          font-size: 13px; cursor: pointer; transition: transform .12s ease, background .12s ease, border-color .12s ease, opacity .12s ease;
+          box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
+        .tb-btn:hover{ transform: translateY(-1px); background: rgba(30,41,59,0.65); border-color: rgba(96,165,250,0.38); }
+        .tb-btn:disabled{ opacity: .6; cursor: not-allowed; transform: none; }
+        .tb-btn.primary{ background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(56,189,248,0.7));
+          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-backdrop{ position: fixed; inset: 0; background: rgba(2,6,23,0.72); backdrop-filter: blur(6px);
+          display:flex; align-items: center; justify-content: center; padding: 20px; z-index: 50; }
+        .tb-modal{ width: min(860px, 96vw); border-radius: 18px;
+          background: radial-gradient(900px 420px at 20% 0%, rgba(96,165,250,0.18), transparent 60%),
+                      radial-gradient(700px 350px at 80% 10%, rgba(34,211,238,0.10), transparent 55%),
+                      rgba(10,16,32,0.92);
+          border: 1px solid rgba(96,165,250,0.22); box-shadow: 0 30px 80px rgba(0,0,0,0.45); overflow: hidden; }
+        .tb-modal-head{ padding: 16px 18px; display:flex; align-items: center; justify-content: space-between; gap: 10px;
+          border-bottom: 1px solid rgba(96,165,250,0.18); }
+        .tb-modal-title{ color: rgba(255,255,255,0.96); font-weight: 900; letter-spacing: .3px; }
+        .tb-modal-sub{ color: rgba(191,219,254,0.8); font-size: 12px; margin-top: 2px; }
+        .tb-grid{ padding: 16px; display:grid; gap: 12px; }
+        .tb-card{ border-radius: 16px; background: rgba(15,23,42,0.55); border: 1px solid rgba(96,165,250,0.18); padding: 14px; }
+        .tb-card-head{ display:flex; align-items:center; justify-content: space-between; margin-bottom: 10px; gap: 10px; }
+        .tb-card-title{ color: rgba(255,255,255,0.92); font-weight: 900; }
+        .tb-help{ color: rgba(148,163,184,0.95); font-size: 12px; margin-top: 8px; line-height: 1.35; }
+        .tb-input, .tb-select{ width: 100%; padding: 10px 12px; border-radius: 12px;
+          border: 1px solid rgba(96,165,250,0.18); background: rgba(2,6,23,0.35); color: rgba(255,255,255,0.92);
+          outline: none; font-weight: 700; }
         .tb-input::placeholder{ color: rgba(148,163,184,0.75); }
-        .tb-row{
-          display:grid;
-          gap: 10px;
-        }
-        .tb-token{
-          display:flex;
-          align-items:center;
-          justify-content: space-between;
-          gap: 10px;
-          padding: 10px 12px;
-          border-radius: 14px;
-          background: rgba(2,6,23,0.38);
-          border: 1px dashed rgba(147,197,253,0.32);
-          color: rgba(255,255,255,0.92);
-        }
-        .tb-mono{
-          font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
-          font-weight: 800;
-          color: rgba(191,219,254,0.95);
-        }
-        .tb-error{
-          border-color: rgba(239,68,68,0.45) !important;
-          background: rgba(127,29,29,0.15) !important;
-          color: rgba(254,202,202,0.95);
-        }
+        .tb-row{ display:grid; gap: 10px; }
+        .tb-token{ display:flex; align-items:center; justify-content: space-between; gap: 10px; padding: 10px 12px;
+          border-radius: 14px; background: rgba(2,6,23,0.38); border: 1px dashed rgba(147,197,253,0.32);
+          color: rgba(255,255,255,0.92); }
+        .tb-mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
+          font-weight: 800; color: rgba(191,219,254,0.95); }
+        .tb-error{ border-color: rgba(239,68,68,0.45) !important; background: rgba(127,29,29,0.15) !important;
+          color: rgba(254,202,202,0.95); }
       `}</style>
 
-      {/* TOPBAR */}
       <div className="tb-wrap">
         <div className="tb-inner">
@@ -394,6 +209,23 @@
                 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>
           </div>
+          <div>
+            <img
+                src={logo}
+                alt="NETIntel logo"
+                className="netintel-logo"
+                width={150}
+                style={{marginTop: 10 }}
+            />
+          </div>
+
+
 
           <div className="tb-actions">
@@ -402,12 +234,29 @@
               Env: {selectedEnv}
             </span>
-            <button className="tb-btn" onClick={onRefresh} disabled={busy}>Refresh</button>
-            <button className="tb-btn" onClick={() => setOpen(true)}>Admin</button>
-            <button className="tb-btn primary" onClick={onOpenAI}>AI Assistant</button>
+            <button className="tb-btn" onClick={onRefresh} disabled={busy}>
+              Refresh
+            </button>
+            <button
+              className="tb-btn"
+              onClick={async () => {
+                setOpen(true);
+                setError("");
+                setToken("");
+                try {
+                  await loadEnvironments();
+                } catch (e) {
+                  setError(String(e.message || e));
+                }
+              }}
+            >
+              Admin
+            </button>
+            <button className="tb-btn primary" onClick={onOpenAI}>
+              AI Assistant
+            </button>
           </div>
         </div>
       </div>
 
-      {/* MODAL */}
       {open && (
         <div className="tb-backdrop" onMouseDown={() => setOpen(false)}>
@@ -415,106 +264,92 @@
             <div className="tb-modal-head">
               <div>
-                <div className="tb-modal-title">Admin Panel</div>
-                <div className="tb-modal-sub">Login ➜ Environments ➜ Generate token</div>
-              </div>
-              <button className="tb-btn" onClick={() => setOpen(false)}>Close</button>
+                <div className="tb-modal-title">Tenant Admin</div>
+                <div className="tb-modal-sub">
+                  Environments ➜ Generate token (clients send X-Env-Token to /receive)
+                </div>
+              </div>
+              <div style={{ display: "flex", gap: 10 }}>
+                <button className="tb-btn" onClick={logout}>
+                  Logout
+                </button>
+                <button className="tb-btn" onClick={() => setOpen(false)}>
+                  Close
+                </button>
+              </div>
             </div>
 
             <div className="tb-grid">
-              {/* 1) LOGIN */}
-              {!adminSession ? (
-                <div className="tb-card">
-                  <div className="tb-card-head">
-                    <div className="tb-card-title">Step 1: Admin login</div>
+              <div className="tb-card">
+                <div className="tb-card-head">
+                  <div className="tb-card-title">Choose environment</div>
+                </div>
+                <div className="tb-row">
+                  <select
+                    className="tb-select"
+                    value={selectedEnv}
+                    onChange={(e) => changeEnv(e.target.value)}
+                  >
+                    {envs.map((e) => (
+                      <option key={e} value={e}>
+                        {e}
+                      </option>
+                    ))}
+                  </select>
+                  <div className="tb-help">
+                    Овој env ќе се користи за dashboard филтрирање + token generation.
                   </div>
-
-                  <div className="tb-row">
-                    <input
-                      className="tb-input"
-                      type="password"
-                      value={adminKey}
-                      onChange={(e) => setAdminKey(e.target.value)}
-                      placeholder="Enter admin key"
-                    />
-                    <button className="tb-btn primary" onClick={login} disabled={busy}>
-                      {busy ? "Logging in…" : "Login"}
-                    </button>
-                    <div className="tb-help">
-                      Admin key е само за логирање. После тоа користиме <b>session token</b>.
-                    </div>
-                  </div>
-                </div>
-              ) : (
-                <>
-                  {/* 2) ENV SELECT */}
-                  <div className="tb-card">
-                    <div className="tb-card-head">
-                      <div className="tb-card-title">Step 2: Choose environment</div>
-                      <button className="tb-btn" onClick={logout}>Logout</button>
-                    </div>
-
-                    <div className="tb-row">
-                      <select className="tb-select" value={selectedEnv} onChange={(e) => changeEnv(e.target.value)}>
-                        {envs.map((e) => (
-                          <option key={e} value={e}>{e}</option>
-                        ))}
-                      </select>
+                </div>
+              </div>
+
+              <div className="tb-card">
+                <div className="tb-card-head">
+                  <div className="tb-card-title">Create new environment</div>
+                </div>
+                <div className="tb-row">
+                  <input
+                    className="tb-input"
+                    value={newEnvName}
+                    onChange={(e) => setNewEnvName(e.target.value)}
+                    placeholder="e.g. school-lab / staging"
+                  />
+                  <button className="tb-btn" onClick={createEnvironment} disabled={busy}>
+                    {busy ? "Creating…" : "Create"}
+                  </button>
+                </div>
+              </div>
+
+              <div className="tb-card">
+                <div className="tb-card-head">
+                  <div className="tb-card-title">Generate token (for clients)</div>
+                </div>
+
+                <div className="tb-row">
+                  <button className="tb-btn primary" onClick={generateToken} disabled={busy}>
+                    {busy ? "Generating…" : `Generate token for "${selectedEnv}"`}
+                  </button>
+
+                  {token && (
+                    <>
+                      <div className="tb-token">
+                        <div>
+                          <div style={{ fontWeight: 900, color: "rgba(255,255,255,0.92)" }}>
+                            Token
+                          </div>
+                          <div className="tb-mono">
+                            {token.slice(0, 12)}…{token.slice(-10)}
+                          </div>
+                        </div>
+                        <button className="tb-btn" onClick={copyToken}>
+                          Copy
+                        </button>
+                      </div>
+
                       <div className="tb-help">
-                        Овој env ќе се користи за dashboard филтрирање + token generation.
+                        Клиентот мора да праќа header: <b>X-Env-Token</b> со овој token на <b>/receive</b>.
                       </div>
-                    </div>
-                  </div>
-
-                  {/* 3) CREATE ENV */}
-                  <div className="tb-card">
-                    <div className="tb-card-head">
-                      <div className="tb-card-title">Create new environment</div>
-                    </div>
-
-                    <div className="tb-row">
-                      <input
-                        className="tb-input"
-                        value={newEnvName}
-                        onChange={(e) => setNewEnvName(e.target.value)}
-                        placeholder="e.g. school-lab / staging"
-                      />
-                      <button className="tb-btn" onClick={createEnvironment} disabled={busy}>
-                        {busy ? "Creating…" : "Create"}
-                      </button>
-                    </div>
-                  </div>
-
-                  {/* 4) TOKEN */}
-                  <div className="tb-card">
-                    <div className="tb-card-head">
-                      <div className="tb-card-title">Step 3: Generate token (for clients)</div>
-                    </div>
-
-                    <div className="tb-row">
-                      <button className="tb-btn primary" onClick={generateToken} disabled={busy}>
-                        {busy ? "Generating…" : `Generate token for "${selectedEnv}"`}
-                      </button>
-
-                      {token && (
-                        <>
-                          <div className="tb-token">
-                            <div>
-                              <div style={{ fontWeight: 900, color: "rgba(255,255,255,0.92)" }}>Token</div>
-                              <div className="tb-mono">
-                                {token.slice(0, 12)}…{token.slice(-10)}
-                              </div>
-                            </div>
-                            <button className="tb-btn" onClick={copyToken}>Copy</button>
-                          </div>
-
-                          <div className="tb-help">
-                            Клиентот мора да праќа header: <b>X-Env-Token</b> со овој token на <b>/receive</b>.
-                          </div>
-                        </>
-                      )}
-                    </div>
-                  </div>
-                </>
-              )}
+                    </>
+                  )}
+                </div>
+              </div>
 
               {error && (
Index: lan-frontend/src/index.css
===================================================================
--- lan-frontend/src/index.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/index.css	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1564,5 +1564,148 @@
 }
 
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
+.aiDrawer-backdrop{
+  position: fixed;
+  inset: 0;
+  background: rgba(0,0,0,.55);
+  backdrop-filter: blur(2px);
+  z-index: 999;
+}
+
+/* десен drawer */
+.aiDrawer{
+  position: fixed;
+  top: 0;
+  right: 0;
+  height: 100vh;
+  width: min(520px, 92vw);
+  background: #0b1220;            /* темна */
+  color: #e7eefc;
+  border-left: 1px solid rgba(255,255,255,.08);
+  z-index: 1000;
+  display: grid;
+  grid-template-rows: auto auto 1fr auto;
+
+  /* slide in */
+  transform: translateX(0);
+  animation: aiSlideIn .18s ease-out;
+}
+
+@keyframes aiSlideIn{
+  from { transform: translateX(24px); opacity: .7; }
+  to   { transform: translateX(0); opacity: 1; }
+}
+
+.aiDrawer-head{
+  padding: 14px 16px;
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  border-bottom: 1px solid rgba(255,255,255,.08);
+}
+
+.aiDrawer-title{
+  font-size: 16px;
+  font-weight: 700;
+}
+
+.aiDrawer-sub{
+  font-size: 12px;
+  opacity: .75;
+  margin-top: 2px;
+}
+
+.aiDrawer-toolbar{
+  padding: 12px 16px;
+  border-bottom: 1px solid rgba(255,255,255,.08);
+  display: grid;
+  gap: 8px;
+}
+
+.aiSelect{
+  width: 100%;
+  background: rgba(255,255,255,.06);
+  border: 1px solid rgba(255,255,255,.10);
+  color: #e7eefc;
+  padding: 10px 12px;
+  border-radius: 10px;
+  outline: none;
+}
+
+.aiHint{
+  font-size: 12px;
+  opacity: .75;
+}
+
+.aiDrawer-body{
+  padding: 14px 16px;
+  overflow: auto;
+  display: grid;
+  gap: 10px;
+}
+
+/* chat bubbles */
+.aiMsg{
+  max-width: 92%;
+  border: 1px solid rgba(255,255,255,.08);
+  border-radius: 14px;
+  padding: 10px 12px;
+  background: rgba(255,255,255,.04);
+}
+
+.aiMsg.user{
+  margin-left: auto;
+  background: rgba(88, 167, 255, .12);
+  border-color: rgba(88, 167, 255, .20);
+}
+
+.aiMsg-meta{
+  font-size: 11px;
+  opacity: .7;
+  margin-bottom: 6px;
+}
+
+.aiMsg-text{
+  white-space: pre-wrap;
+  line-height: 1.35;
+  font-size: 14px;
+}
+
+.aiDrawer-foot{
+  padding: 12px 16px;
+  border-top: 1px solid rgba(255,255,255,.08);
+  display: grid;
+  grid-template-columns: 1fr auto;
+  gap: 10px;
+  align-items: end;
+  background: rgba(255,255,255,.02);
+}
+
+.aiTextarea{
+  width: 100%;
+  resize: none;
+  background: rgba(255,255,255,.06);
+  border: 1px solid rgba(255,255,255,.10);
+  color: #e7eefc;
+  padding: 10px 12px;
+  border-radius: 12px;
+  outline: none;
+}
+
+.aiBtn{
+  background: rgba(255,255,255,.06);
+  border: 1px solid rgba(255,255,255,.10);
+  color: #e7eefc;
+  padding: 10px 12px;
+  border-radius: 12px;
+  cursor: pointer;
+}
+
+.aiBtn:disabled{
+  opacity: .5;
+  cursor: not-allowed;
+}
+
+.aiBtnPrimary{
+  background: rgba(88, 167, 255, .22);
+  border-color: rgba(88, 167, 255, .35);
+}
Index: lan-frontend/src/main.jsx
===================================================================
--- lan-frontend/src/main.jsx	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/main.jsx	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,10 +1,13 @@
-import React from 'react';                    // ⬅ додадено
-import ReactDOM from 'react-dom/client';
-import App from './App.jsx';
-import './index.css';
+import React from "react";
+import ReactDOM from "react-dom/client";
+import { GoogleOAuthProvider } from "@react-oauth/google";
+import App from "./App.jsx";
+import "./styles/theme.css";
 
-ReactDOM.createRoot(document.getElementById('root')).render(
+ReactDOM.createRoot(document.getElementById("root")).render(
   <React.StrictMode>
-    <App />
+    <GoogleOAuthProvider clientId={import.meta.env.VITE_GOOGLE_CLIENT_ID}>
+      <App />
+    </GoogleOAuthProvider>
   </React.StrictMode>
 );
Index: lan-frontend/src/styles/theme.css
===================================================================
--- lan-frontend/src/styles/theme.css	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/src/styles/theme.css	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -402,2 +402,148 @@
 }
 *::-webkit-scrollbar-track{ background: rgba(2,6,23,0.25); }
+.aiDrawer-backdrop{
+  position: fixed;
+  inset: 0;
+  background: rgba(0,0,0,.55);
+  backdrop-filter: blur(2px);
+  z-index: 999;
+}
+
+/* десен drawer */
+.aiDrawer{
+  position: fixed;
+  top: 0;
+  right: 0;
+  height: 100vh;
+  width: min(520px, 92vw);
+  background: #0b1220;            /* темна */
+  color: #e7eefc;
+  border-left: 1px solid rgba(255,255,255,.08);
+  z-index: 1000;
+  display: grid;
+  grid-template-rows: auto auto 1fr auto;
+
+  /* slide in */
+  transform: translateX(0);
+  animation: aiSlideIn .18s ease-out;
+}
+
+@keyframes aiSlideIn{
+  from { transform: translateX(24px); opacity: .7; }
+  to   { transform: translateX(0); opacity: 1; }
+}
+
+.aiDrawer-head{
+  padding: 14px 16px;
+  display: flex;
+  align-items: center;
+  justify-content: space-between;
+  border-bottom: 1px solid rgba(255,255,255,.08);
+}
+
+.aiDrawer-title{
+  font-size: 16px;
+  font-weight: 700;
+}
+
+.aiDrawer-sub{
+  font-size: 12px;
+  opacity: .75;
+  margin-top: 2px;
+}
+
+.aiDrawer-toolbar{
+  padding: 12px 16px;
+  border-bottom: 1px solid rgba(255,255,255,.08);
+  display: grid;
+  gap: 8px;
+}
+
+.aiSelect{
+  width: 100%;
+  background: rgba(255,255,255,.06);
+  border: 1px solid rgba(255,255,255,.10);
+  color: #e7eefc;
+  padding: 10px 12px;
+  border-radius: 10px;
+  outline: none;
+}
+
+.aiHint{
+  font-size: 12px;
+  opacity: .75;
+}
+
+.aiDrawer-body{
+  padding: 14px 16px;
+  overflow: auto;
+  display: grid;
+  gap: 10px;
+}
+
+/* chat bubbles */
+.aiMsg{
+  max-width: 92%;
+  border: 1px solid rgba(255,255,255,.08);
+  border-radius: 14px;
+  padding: 10px 12px;
+  background: rgba(255,255,255,.04);
+}
+
+.aiMsg.user{
+  margin-left: auto;
+  background: rgba(88, 167, 255, .12);
+  border-color: rgba(88, 167, 255, .20);
+}
+
+.aiMsg-meta{
+  font-size: 11px;
+  opacity: .7;
+  margin-bottom: 6px;
+}
+
+.aiMsg-text{
+  white-space: pre-wrap;
+  line-height: 1.35;
+  font-size: 14px;
+}
+
+.aiDrawer-foot{
+  padding: 12px 16px;
+  border-top: 1px solid rgba(255,255,255,.08);
+  display: grid;
+  grid-template-columns: 1fr auto;
+  gap: 10px;
+  align-items: end;
+  background: rgba(255,255,255,.02);
+}
+
+.aiTextarea{
+  width: 100%;
+  resize: none;
+  background: rgba(255,255,255,.06);
+  border: 1px solid rgba(255,255,255,.10);
+  color: #e7eefc;
+  padding: 10px 12px;
+  border-radius: 12px;
+  outline: none;
+}
+
+.aiBtn{
+  background: rgba(255,255,255,.06);
+  border: 1px solid rgba(255,255,255,.10);
+  color: #e7eefc;
+  padding: 10px 12px;
+  border-radius: 12px;
+  cursor: pointer;
+}
+
+.aiBtn:disabled{
+  opacity: .5;
+  cursor: not-allowed;
+}
+
+.aiBtnPrimary{
+  background: rgba(88, 167, 255, .22);
+  border-color: rgba(88, 167, 255, .35);
+}
Index: lan-frontend/vite.config.js
===================================================================
--- lan-frontend/vite.config.js	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ lan-frontend/vite.config.js	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,11 +1,33 @@
-import { defineConfig } from 'vite'
-import react from '@vitejs/plugin-react'
+// import { defineConfig } from "vite";
+// import react from "@vitejs/plugin-react";
+//
+// export default defineConfig({
+//   plugins: [react()],
+//   server: {
+//     proxy: {
+//       "/api": { target: "http://localhost:5555", changeOrigin: true },
+//       "/receive": { target: "http://localhost:5555", changeOrigin: true },
+//       "/ping": { target: "http://localhost:5555", changeOrigin: true },
+//     },
+//   },
+// });
+import { defineConfig } from "vite";
+import react from "@vitejs/plugin-react";
 
-// https://vite.dev/config/
-export default {
+export default defineConfig({
+  plugins: [react()],
   server: {
     proxy: {
-      "/api": "http://localhost:5555",
+      "/api": {
+        target: "http://localhost:5555",
+        changeOrigin: true,
+        secure: false,
+      },
+      "/receive": {
+        target: "http://localhost:5555",
+        changeOrigin: true,
+        secure: false,
+      },
     },
   },
-};
+});
Index: received_data_sysmon/Ilina-laptop/20260120_18.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260120_18.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ received_data_sysmon/Ilina-laptop/20260120_18.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -0,0 +1,518 @@
+[
+  {
+    "timestamp": "2026-01-20T18:58:01.012693",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20T18:58:01.012693",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.57,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 134270.02,
+      "disk_write_mb": 136297.85,
+      "network_sent_mb": 76.57,
+      "network_recv_mb": 317.74,
+      "network_packets_sent": 242095,
+      "network_packets_recv": 373792,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 156.83,
+      "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.0.29",
+            "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": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20T18:58:35.577410",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20T18:58:35.577410",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.51,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 134281.91,
+      "disk_write_mb": 136301.41,
+      "network_sent_mb": 76.63,
+      "network_recv_mb": 317.8,
+      "network_packets_sent": 242288,
+      "network_packets_recv": 374086,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 156.84,
+      "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.0.29",
+            "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": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20T18:59:09.781525",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20T18:59:09.781525",
+      "is_sysmon_available": false,
+      "cpu_usage": 39.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.71,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 134284.46,
+      "disk_write_mb": 136303.97,
+      "network_sent_mb": 76.74,
+      "network_recv_mb": 318.06,
+      "network_packets_sent": 242714,
+      "network_packets_recv": 374631,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 156.85,
+      "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.0.29",
+            "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": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-20T18:59:47.831906",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20T18:59:47.831906",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 86.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.59,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 134285.08,
+      "disk_write_mb": 136362.22,
+      "network_sent_mb": 77.03,
+      "network_recv_mb": 318.19,
+      "network_packets_sent": 243216,
+      "network_packets_recv": 375161,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 156.86,
+      "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.0.29",
+            "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": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260120_19.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260120_19.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ received_data_sysmon/Ilina-laptop/20260120_19.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -0,0 +1,131 @@
+[
+  {
+    "timestamp": "2026-01-20T19:00:25.008187",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-20T19:00:25.008187",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.74,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 134353.18,
+      "disk_write_mb": 136376.69,
+      "network_sent_mb": 77.06,
+      "network_recv_mb": 318.23,
+      "network_packets_sent": 243358,
+      "network_packets_recv": 375417,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 156.87,
+      "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.03,
+          "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.0.29",
+            "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": 100,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260121_00.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260121_00.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ received_data_sysmon/Ilina-laptop/20260121_00.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -0,0 +1,11354 @@
+[
+  {
+    "timestamp": "2026-01-21T00:02:46.285010",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:02:46.285010",
+      "is_sysmon_available": false,
+      "cpu_usage": 47.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.87,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.9,
+      "disk_read_mb": 135662.02,
+      "disk_write_mb": 136597.58,
+      "network_sent_mb": 77.96,
+      "network_recv_mb": 322.42,
+      "network_packets_sent": 246510,
+      "network_packets_recv": 378753,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 161.91,
+      "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.0.29",
+            "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": 99,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:03:30.198177",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:03:30.198177",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.83,
+      "swap_usage": 9.9,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.86,
+      "disk_read_mb": 135977.59,
+      "disk_write_mb": 136713.53,
+      "network_sent_mb": 78.87,
+      "network_recv_mb": 325.82,
+      "network_packets_sent": 248718,
+      "network_packets_recv": 381388,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 161.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.0.29",
+            "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": 98,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:04:11.431103",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:04:11.431103",
+      "is_sysmon_available": false,
+      "cpu_usage": 29.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.74,
+      "swap_usage": 9.9,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.93,
+      "disk_read_mb": 136136.29,
+      "disk_write_mb": 136841.37,
+      "network_sent_mb": 79.79,
+      "network_recv_mb": 344.48,
+      "network_packets_sent": 256173,
+      "network_packets_recv": 392578,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 161.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.93,
+          "free_gb": 172.01,
+          "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.0.29",
+            "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": 98,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:04:52.899226",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:04:52.899226",
+      "is_sysmon_available": false,
+      "cpu_usage": 48.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.68,
+      "swap_usage": 9.9,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136392.88,
+      "disk_write_mb": 137010.72,
+      "network_sent_mb": 80.41,
+      "network_recv_mb": 351.9,
+      "network_packets_sent": 257762,
+      "network_packets_recv": 399438,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 161.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 97,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:05:32.635286",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:05:32.635286",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 92.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.44,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.01,
+      "disk_read_mb": 136414.48,
+      "disk_write_mb": 137076.71,
+      "network_sent_mb": 80.91,
+      "network_recv_mb": 353.2,
+      "network_packets_sent": 259249,
+      "network_packets_recv": 401886,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 161.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.01,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 97,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:06:12.815123",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:06:12.815123",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.32,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.01,
+      "disk_read_mb": 136440.51,
+      "disk_write_mb": 137094.9,
+      "network_sent_mb": 81.28,
+      "network_recv_mb": 354.01,
+      "network_packets_sent": 260340,
+      "network_packets_recv": 403204,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 161.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.01,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 96,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:06:53.116893",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:06:53.116893",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.35,
+      "swap_usage": 9.8,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.01,
+      "disk_read_mb": 136475.59,
+      "disk_write_mb": 137120.39,
+      "network_sent_mb": 81.52,
+      "network_recv_mb": 355.13,
+      "network_packets_sent": 261507,
+      "network_packets_recv": 404683,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 161.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.01,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 96,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:07:32.479579",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:07:32.479579",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.85,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.01,
+      "disk_read_mb": 136562.53,
+      "disk_write_mb": 137218.22,
+      "network_sent_mb": 82.39,
+      "network_recv_mb": 370.51,
+      "network_packets_sent": 264889,
+      "network_packets_recv": 418724,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 161.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.01,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 96,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:08:11.198756",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:08:11.198756",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.65,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.01,
+      "disk_read_mb": 136567.99,
+      "disk_write_mb": 137230.15,
+      "network_sent_mb": 82.56,
+      "network_recv_mb": 370.69,
+      "network_packets_sent": 265944,
+      "network_packets_recv": 420082,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.01,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 95,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:08:49.716738",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:08:49.716738",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.82,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.01,
+      "disk_read_mb": 136571.66,
+      "disk_write_mb": 137243.35,
+      "network_sent_mb": 82.74,
+      "network_recv_mb": 370.85,
+      "network_packets_sent": 266462,
+      "network_packets_recv": 420679,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.01,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 95,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:09:29.959686",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:09:29.959686",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 96.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 15.08,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.01,
+      "disk_read_mb": 136580.61,
+      "disk_write_mb": 137254.84,
+      "network_sent_mb": 82.84,
+      "network_recv_mb": 370.95,
+      "network_packets_sent": 266741,
+      "network_packets_recv": 421066,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.01,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 94,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:10:12.148154",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:10:12.148154",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.93,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136629.77,
+      "disk_write_mb": 137285.68,
+      "network_sent_mb": 83.01,
+      "network_recv_mb": 371.41,
+      "network_packets_sent": 267383,
+      "network_packets_recv": 421938,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.04,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 94,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:10:51.795261",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:10:51.795261",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.97,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136655.34,
+      "disk_write_mb": 137303.3,
+      "network_sent_mb": 83.12,
+      "network_recv_mb": 371.79,
+      "network_packets_sent": 267867,
+      "network_packets_recv": 422557,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 94,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:11:32.026036",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:11:32.026036",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.92,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136676.85,
+      "disk_write_mb": 137321.84,
+      "network_sent_mb": 83.41,
+      "network_recv_mb": 372.1,
+      "network_packets_sent": 268235,
+      "network_packets_recv": 423089,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 93,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:12:10.667273",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:12:10.667273",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.98,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136678.87,
+      "disk_write_mb": 137334.94,
+      "network_sent_mb": 83.62,
+      "network_recv_mb": 372.26,
+      "network_packets_sent": 268782,
+      "network_packets_recv": 423738,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.07,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 93,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:12:49.967772",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:12:49.967772",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.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": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136685.58,
+      "disk_write_mb": 137351.94,
+      "network_sent_mb": 83.92,
+      "network_recv_mb": 372.52,
+      "network_packets_sent": 269775,
+      "network_packets_recv": 425002,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 92,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:13:28.255581",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:13:28.255581",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.47,
+      "swap_usage": 10.1,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136686.31,
+      "disk_write_mb": 137364.02,
+      "network_sent_mb": 84.15,
+      "network_recv_mb": 372.67,
+      "network_packets_sent": 270705,
+      "network_packets_recv": 426078,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.09,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 92,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:14:07.654943",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:14:07.654943",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.63,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136710.37,
+      "disk_write_mb": 137378.84,
+      "network_sent_mb": 84.38,
+      "network_recv_mb": 373.07,
+      "network_packets_sent": 271553,
+      "network_packets_recv": 427259,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 91,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:14:47.255522",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:14:47.255522",
+      "is_sysmon_available": false,
+      "cpu_usage": 37.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.74,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136742.36,
+      "disk_write_mb": 137394.99,
+      "network_sent_mb": 84.55,
+      "network_recv_mb": 373.23,
+      "network_packets_sent": 271946,
+      "network_packets_recv": 427740,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 91,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:15:26.816023",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:15:26.816023",
+      "is_sysmon_available": false,
+      "cpu_usage": 56.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.6,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136789.97,
+      "disk_write_mb": 137407.45,
+      "network_sent_mb": 84.8,
+      "network_recv_mb": 373.48,
+      "network_packets_sent": 272582,
+      "network_packets_recv": 428606,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 91,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:16:06.489037",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:16:06.489037",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 93.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.61,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136808.12,
+      "disk_write_mb": 137422.51,
+      "network_sent_mb": 85.04,
+      "network_recv_mb": 373.72,
+      "network_packets_sent": 273262,
+      "network_packets_recv": 429680,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 90,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:16:46.211667",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:16:46.211667",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.57,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 136823.03,
+      "disk_write_mb": 137443.55,
+      "network_sent_mb": 85.2,
+      "network_recv_mb": 374.73,
+      "network_packets_sent": 274014,
+      "network_packets_recv": 431101,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 90,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:17:25.480965",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:17:25.480965",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.33,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136894.29,
+      "disk_write_mb": 137490.68,
+      "network_sent_mb": 85.32,
+      "network_recv_mb": 377.42,
+      "network_packets_sent": 275087,
+      "network_packets_recv": 432415,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 89,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:18:05.217152",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:18:05.217152",
+      "is_sysmon_available": false,
+      "cpu_usage": 27.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.47,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136905.64,
+      "disk_write_mb": 137515.72,
+      "network_sent_mb": 85.44,
+      "network_recv_mb": 377.58,
+      "network_packets_sent": 275439,
+      "network_packets_recv": 432894,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 89,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:18:44.932782",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:18:44.932782",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.44,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136916.94,
+      "disk_write_mb": 137530.25,
+      "network_sent_mb": 85.62,
+      "network_recv_mb": 377.74,
+      "network_packets_sent": 275831,
+      "network_packets_recv": 433397,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 89,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:19:22.494361",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:19:22.494361",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.42,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136917.69,
+      "disk_write_mb": 137540.48,
+      "network_sent_mb": 85.67,
+      "network_recv_mb": 377.87,
+      "network_packets_sent": 276080,
+      "network_packets_recv": 433765,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 88,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:20:01.453335",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:20:01.453335",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.4,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136918.11,
+      "disk_write_mb": 137555.1,
+      "network_sent_mb": 85.75,
+      "network_recv_mb": 377.96,
+      "network_packets_sent": 276335,
+      "network_packets_recv": 434142,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 88,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:20:40.403003",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:20:40.403003",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.39,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136922.77,
+      "disk_write_mb": 137569.05,
+      "network_sent_mb": 85.78,
+      "network_recv_mb": 378.01,
+      "network_packets_sent": 276451,
+      "network_packets_recv": 434383,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 87,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:21:20.268275",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:21:20.268275",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 92.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.43,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136924.04,
+      "disk_write_mb": 137585.32,
+      "network_sent_mb": 85.9,
+      "network_recv_mb": 378.18,
+      "network_packets_sent": 276886,
+      "network_packets_recv": 434951,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 87,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:21:58.718093",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:21:58.718093",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 92.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.44,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136924.68,
+      "disk_write_mb": 137599.36,
+      "network_sent_mb": 86.0,
+      "network_recv_mb": 378.32,
+      "network_packets_sent": 277192,
+      "network_packets_recv": 435423,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 87,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:22:36.750225",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:22:36.750225",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.3,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136940.45,
+      "disk_write_mb": 137612.56,
+      "network_sent_mb": 86.05,
+      "network_recv_mb": 378.37,
+      "network_packets_sent": 277352,
+      "network_packets_recv": 435694,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 86,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:23:15.413682",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:23:15.413682",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.32,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136962.68,
+      "disk_write_mb": 137625.91,
+      "network_sent_mb": 86.1,
+      "network_recv_mb": 378.44,
+      "network_packets_sent": 277533,
+      "network_packets_recv": 435982,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 86,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:23:53.831397",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:23:53.831397",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.27,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136963.6,
+      "disk_write_mb": 137639.65,
+      "network_sent_mb": 86.14,
+      "network_recv_mb": 378.51,
+      "network_packets_sent": 277687,
+      "network_packets_recv": 436280,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:24:32.642723",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:24:32.642723",
+      "is_sysmon_available": false,
+      "cpu_usage": 25.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.3,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136964.11,
+      "disk_write_mb": 137654.91,
+      "network_sent_mb": 86.21,
+      "network_recv_mb": 378.74,
+      "network_packets_sent": 277945,
+      "network_packets_recv": 436708,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:25:10.885927",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:25:10.885927",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.34,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136964.4,
+      "disk_write_mb": 137668.47,
+      "network_sent_mb": 86.27,
+      "network_recv_mb": 378.82,
+      "network_packets_sent": 278130,
+      "network_packets_recv": 437052,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:25:49.292518",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:25:49.292518",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 91.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.31,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.03,
+      "disk_read_mb": 136969.93,
+      "disk_write_mb": 137682.15,
+      "network_sent_mb": 86.33,
+      "network_recv_mb": 378.89,
+      "network_packets_sent": 278303,
+      "network_packets_recv": 437355,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.03,
+          "free_gb": 171.91,
+          "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.0.29",
+            "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": 84,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:26:28.783697",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:26:28.783697",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.38,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 137002.56,
+      "disk_write_mb": 137717.13,
+      "network_sent_mb": 86.4,
+      "network_recv_mb": 378.96,
+      "network_packets_sent": 278481,
+      "network_packets_recv": 437665,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 84,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:27:07.678766",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:27:07.678766",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.45,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 137005.15,
+      "disk_write_mb": 137729.94,
+      "network_sent_mb": 86.45,
+      "network_recv_mb": 379.05,
+      "network_packets_sent": 278667,
+      "network_packets_recv": 437979,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 83,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:27:46.089354",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:27:46.089354",
+      "is_sysmon_available": false,
+      "cpu_usage": 29.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.4,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 137005.6,
+      "disk_write_mb": 137746.63,
+      "network_sent_mb": 86.51,
+      "network_recv_mb": 379.12,
+      "network_packets_sent": 278852,
+      "network_packets_recv": 438305,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 83,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:28:24.689619",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:28:24.689619",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.58,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 137031.07,
+      "disk_write_mb": 137761.13,
+      "network_sent_mb": 87.09,
+      "network_recv_mb": 379.64,
+      "network_packets_sent": 279666,
+      "network_packets_recv": 439381,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 83,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:29:03.045140",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:29:03.045140",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.85,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.02,
+      "disk_read_mb": 137032.35,
+      "disk_write_mb": 137779.18,
+      "network_sent_mb": 87.28,
+      "network_recv_mb": 379.81,
+      "network_packets_sent": 280100,
+      "network_packets_recv": 439894,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.02,
+          "free_gb": 171.92,
+          "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.0.29",
+            "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": 82,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:29:42.941613",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:29:42.941613",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.71,
+      "swap_usage": 10.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137046.02,
+      "disk_write_mb": 137797.4,
+      "network_sent_mb": 87.52,
+      "network_recv_mb": 380.29,
+      "network_packets_sent": 281000,
+      "network_packets_recv": 441109,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 82,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:30:25.127919",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:30:25.127919",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 86.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.47,
+      "swap_usage": 15.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137208.63,
+      "disk_write_mb": 139239.53,
+      "network_sent_mb": 90.02,
+      "network_recv_mb": 388.53,
+      "network_packets_sent": 289688,
+      "network_packets_recv": 451506,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 81,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:31:05.306555",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:31:05.306555",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.27,
+      "swap_usage": 15.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137240.12,
+      "disk_write_mb": 139262.12,
+      "network_sent_mb": 90.38,
+      "network_recv_mb": 390.06,
+      "network_packets_sent": 291014,
+      "network_packets_recv": 453574,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 81,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:31:45.438062",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:31:45.438062",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.23,
+      "swap_usage": 15.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137447.61,
+      "disk_write_mb": 139277.55,
+      "network_sent_mb": 90.52,
+      "network_recv_mb": 390.27,
+      "network_packets_sent": 291459,
+      "network_packets_recv": 454137,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 80,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:32:24.913948",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:32:24.913948",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.2,
+      "swap_usage": 15.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137469.69,
+      "disk_write_mb": 139290.13,
+      "network_sent_mb": 90.76,
+      "network_recv_mb": 390.5,
+      "network_packets_sent": 292161,
+      "network_packets_recv": 454938,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 80,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 51
+  },
+  {
+    "timestamp": "2026-01-21T00:33:06.613317",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:33:06.613317",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 84.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.22,
+      "swap_usage": 15.2,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.01,
+      "disk_read_mb": 137655.75,
+      "disk_write_mb": 139313.91,
+      "network_sent_mb": 91.25,
+      "network_recv_mb": 392.34,
+      "network_packets_sent": 293946,
+      "network_packets_recv": 456904,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.01,
+          "free_gb": 171.93,
+          "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.0.29",
+            "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": 80,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:33:47.122395",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:33:47.122395",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.97,
+      "swap_usage": 14.5,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137700.83,
+      "disk_write_mb": 139329.95,
+      "network_sent_mb": 91.62,
+      "network_recv_mb": 392.67,
+      "network_packets_sent": 294787,
+      "network_packets_recv": 457863,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 79,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:34:26.999434",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:34:26.999434",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.97,
+      "swap_usage": 14.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137710.54,
+      "disk_write_mb": 139340.71,
+      "network_sent_mb": 91.7,
+      "network_recv_mb": 392.78,
+      "network_packets_sent": 295007,
+      "network_packets_recv": 458209,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 79,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:35:07.651269",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:35:07.651269",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.0,
+      "swap_usage": 14.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137745.95,
+      "disk_write_mb": 139356.65,
+      "network_sent_mb": 91.95,
+      "network_recv_mb": 393.06,
+      "network_packets_sent": 295738,
+      "network_packets_recv": 459072,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 78,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:35:47.967201",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:35:47.967201",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.1,
+      "swap_usage": 14.4,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137821.51,
+      "disk_write_mb": 139373.86,
+      "network_sent_mb": 92.11,
+      "network_recv_mb": 393.28,
+      "network_packets_sent": 296854,
+      "network_packets_recv": 460507,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 78,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:36:28.054478",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:36:28.054478",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 78.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.32,
+      "swap_usage": 14.3,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137827.78,
+      "disk_write_mb": 139385.95,
+      "network_sent_mb": 92.3,
+      "network_recv_mb": 393.47,
+      "network_packets_sent": 297379,
+      "network_packets_recv": 461157,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 77,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:37:08.012200",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:37:08.012200",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.31,
+      "swap_usage": 14.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137929.14,
+      "disk_write_mb": 139408.57,
+      "network_sent_mb": 93.15,
+      "network_recv_mb": 394.52,
+      "network_packets_sent": 298507,
+      "network_packets_recv": 462830,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 77,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:37:47.794180",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:37:47.794180",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.97,
+      "swap_usage": 14.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137937.52,
+      "disk_write_mb": 139434.38,
+      "network_sent_mb": 93.19,
+      "network_recv_mb": 394.58,
+      "network_packets_sent": 298661,
+      "network_packets_recv": 463113,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 77,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:38:28.238070",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:38:28.238070",
+      "is_sysmon_available": false,
+      "cpu_usage": 25.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": 14.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137940.77,
+      "disk_write_mb": 139447.01,
+      "network_sent_mb": 93.45,
+      "network_recv_mb": 394.86,
+      "network_packets_sent": 299616,
+      "network_packets_recv": 464297,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 76,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:39:08.769180",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:39:08.769180",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.36,
+      "swap_usage": 14.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137947.35,
+      "disk_write_mb": 139461.78,
+      "network_sent_mb": 93.65,
+      "network_recv_mb": 395.1,
+      "network_packets_sent": 300803,
+      "network_packets_recv": 465783,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 76,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:39:49.381042",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:39:49.381042",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.41,
+      "swap_usage": 14.0,
+      "disk_usage": 63.9,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 304.0,
+      "disk_read_mb": 137960.25,
+      "disk_write_mb": 139475.84,
+      "network_sent_mb": 93.77,
+      "network_recv_mb": 395.27,
+      "network_packets_sent": 301189,
+      "network_packets_recv": 466296,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 304.0,
+          "free_gb": 171.94,
+          "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.0.29",
+            "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": 75,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:40:29.215917",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:40:29.215917",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.47,
+      "swap_usage": 13.8,
+      "disk_usage": 63.8,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 303.41,
+      "disk_read_mb": 138005.67,
+      "disk_write_mb": 139501.98,
+      "network_sent_mb": 93.99,
+      "network_recv_mb": 395.39,
+      "network_packets_sent": 301664,
+      "network_packets_recv": 466859,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 303.41,
+          "free_gb": 172.53,
+          "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.0.29",
+            "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": 75,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:41:08.598241",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:41:08.598241",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.17,
+      "swap_usage": 14.7,
+      "disk_usage": 63.5,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 302.18,
+      "disk_read_mb": 138020.41,
+      "disk_write_mb": 139513.48,
+      "network_sent_mb": 94.07,
+      "network_recv_mb": 395.51,
+      "network_packets_sent": 301938,
+      "network_packets_recv": 467274,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 302.18,
+          "free_gb": 173.76,
+          "percent_used": 63.5
+        }
+      ],
+      "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.0.29",
+            "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": 75,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:41:47.939733",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:41:47.939733",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.13,
+      "swap_usage": 14.8,
+      "disk_usage": 63.5,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 302.09,
+      "disk_read_mb": 138021.42,
+      "disk_write_mb": 139532.61,
+      "network_sent_mb": 94.17,
+      "network_recv_mb": 395.62,
+      "network_packets_sent": 302219,
+      "network_packets_recv": 467693,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.56,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 302.09,
+          "free_gb": 173.85,
+          "percent_used": 63.5
+        }
+      ],
+      "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.0.29",
+            "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": 74,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:42:27.000704",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:42:27.000704",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 71.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.13,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138027.09,
+      "disk_write_mb": 139545.07,
+      "network_sent_mb": 94.24,
+      "network_recv_mb": 395.73,
+      "network_packets_sent": 302434,
+      "network_packets_recv": 468042,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.57,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 74,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:43:05.545056",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:43:05.545056",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 70.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.05,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138028.55,
+      "disk_write_mb": 139560.99,
+      "network_sent_mb": 94.3,
+      "network_recv_mb": 395.8,
+      "network_packets_sent": 302615,
+      "network_packets_recv": 468328,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.58,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 73,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:43:45.078362",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:43:45.078362",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.32,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138034.85,
+      "disk_write_mb": 139573.73,
+      "network_sent_mb": 94.53,
+      "network_recv_mb": 396.01,
+      "network_packets_sent": 303564,
+      "network_packets_recv": 469495,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.59,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 73,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:44:23.453313",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:44:23.453313",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.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": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138035.86,
+      "disk_write_mb": 139596.82,
+      "network_sent_mb": 94.9,
+      "network_recv_mb": 396.23,
+      "network_packets_sent": 304215,
+      "network_packets_recv": 470213,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.61,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 73,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:45:03.182841",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:45:03.182841",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.25,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138037.35,
+      "disk_write_mb": 139610.66,
+      "network_sent_mb": 95.01,
+      "network_recv_mb": 396.35,
+      "network_packets_sent": 304518,
+      "network_packets_recv": 470638,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.62,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 72,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:45:42.409718",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:45:42.409718",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.27,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138038.35,
+      "disk_write_mb": 139622.2,
+      "network_sent_mb": 95.28,
+      "network_recv_mb": 396.52,
+      "network_packets_sent": 304999,
+      "network_packets_recv": 471213,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.63,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 72,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:46:22.101038",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:46:22.101038",
+      "is_sysmon_available": false,
+      "cpu_usage": 25.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.38,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138136.07,
+      "disk_write_mb": 139637.34,
+      "network_sent_mb": 95.42,
+      "network_recv_mb": 396.65,
+      "network_packets_sent": 305360,
+      "network_packets_recv": 471679,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.64,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:47:00.175135",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:47:00.175135",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.23,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138137.31,
+      "disk_write_mb": 139657.48,
+      "network_sent_mb": 95.75,
+      "network_recv_mb": 396.85,
+      "network_packets_sent": 305921,
+      "network_packets_recv": 472335,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.65,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:47:38.731755",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:47:38.731755",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.26,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138138.62,
+      "disk_write_mb": 139671.14,
+      "network_sent_mb": 96.01,
+      "network_recv_mb": 396.98,
+      "network_packets_sent": 306351,
+      "network_packets_recv": 472814,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.66,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 71,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:48:18.335078",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:48:18.335078",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.39,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138140.45,
+      "disk_write_mb": 139682.8,
+      "network_sent_mb": 96.28,
+      "network_recv_mb": 397.15,
+      "network_packets_sent": 306859,
+      "network_packets_recv": 473396,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.67,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:48:58.017851",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:48:58.017851",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.36,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138142.18,
+      "disk_write_mb": 139697.69,
+      "network_sent_mb": 96.5,
+      "network_recv_mb": 397.33,
+      "network_packets_sent": 307265,
+      "network_packets_recv": 473928,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.68,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 70,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:49:36.827765",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:49:36.827765",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.44,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138143.19,
+      "disk_write_mb": 139710.09,
+      "network_sent_mb": 96.81,
+      "network_recv_mb": 397.5,
+      "network_packets_sent": 307808,
+      "network_packets_recv": 474514,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.69,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:50:16.506458",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:50:16.506458",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.44,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138146.9,
+      "disk_write_mb": 139727.68,
+      "network_sent_mb": 97.1,
+      "network_recv_mb": 397.68,
+      "network_packets_sent": 308307,
+      "network_packets_recv": 475107,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.7,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 69,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:50:55.134429",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:50:55.134429",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.4,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138165.18,
+      "disk_write_mb": 139761.44,
+      "network_sent_mb": 97.4,
+      "network_recv_mb": 397.92,
+      "network_packets_sent": 308891,
+      "network_packets_recv": 475784,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.71,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:51:33.511841",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:51:33.511841",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.38,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138178.22,
+      "disk_write_mb": 139773.62,
+      "network_sent_mb": 97.7,
+      "network_recv_mb": 398.11,
+      "network_packets_sent": 309421,
+      "network_packets_recv": 476374,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.73,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 68,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:52:12.941233",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:52:12.941233",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.49,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138202.56,
+      "disk_write_mb": 139787.97,
+      "network_sent_mb": 98.08,
+      "network_recv_mb": 398.37,
+      "network_packets_sent": 310054,
+      "network_packets_recv": 477118,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.74,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 67,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:52:51.069501",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:52:51.069501",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.53,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138203.5,
+      "disk_write_mb": 139799.94,
+      "network_sent_mb": 98.25,
+      "network_recv_mb": 398.52,
+      "network_packets_sent": 310470,
+      "network_packets_recv": 477627,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 67,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:53:29.916638",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:53:29.916638",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.62,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138230.88,
+      "disk_write_mb": 139812.8,
+      "network_sent_mb": 98.34,
+      "network_recv_mb": 398.6,
+      "network_packets_sent": 310687,
+      "network_packets_recv": 477958,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.76,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.04,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 67,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:54:08.649116",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:54:08.649116",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.58,
+      "swap_usage": 15.0,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138232.57,
+      "disk_write_mb": 139837.62,
+      "network_sent_mb": 98.8,
+      "network_recv_mb": 398.89,
+      "network_packets_sent": 311329,
+      "network_packets_recv": 478696,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.03,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:54:46.630365",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:54:46.630365",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.63,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138235.23,
+      "disk_write_mb": 139848.65,
+      "network_sent_mb": 98.92,
+      "network_recv_mb": 399.06,
+      "network_packets_sent": 312359,
+      "network_packets_recv": 480022,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.03,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 66,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:55:24.310548",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:55:24.310548",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.8,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.9,
+      "disk_read_mb": 138235.95,
+      "disk_write_mb": 139858.69,
+      "network_sent_mb": 99.03,
+      "network_recv_mb": 399.21,
+      "network_packets_sent": 313360,
+      "network_packets_recv": 481289,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.79,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.9,
+          "free_gb": 174.03,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:56:03.504354",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:56:03.504354",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.95,
+      "swap_usage": 14.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.91,
+      "disk_read_mb": 138246.4,
+      "disk_write_mb": 139876.74,
+      "network_sent_mb": 99.23,
+      "network_recv_mb": 399.99,
+      "network_packets_sent": 314310,
+      "network_packets_recv": 482714,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.91,
+          "free_gb": 174.03,
+          "percent_used": 63.4
+        }
+      ],
+      "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.0.29",
+            "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": 65,
+      "temperatures": {}
+    },
+    "processes_count": 100,
+    "sysmon_events_count": 50
+  },
+  {
+    "timestamp": "2026-01-21T00:56:41.290939",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:56:41.290939",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.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": 15.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 138338.01,
+      "disk_write_mb": 139895.94,
+      "network_sent_mb": 100.19,
+      "network_recv_mb": 400.84,
+      "network_packets_sent": 315544,
+      "network_packets_recv": 484349,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.57,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T00:57:17.456208",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:57:17.456208",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.27,
+      "swap_usage": 15.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 138382.52,
+      "disk_write_mb": 139958.44,
+      "network_sent_mb": 100.31,
+      "network_recv_mb": 400.9,
+      "network_packets_sent": 315798,
+      "network_packets_recv": 484692,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T00:57:55.925447",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:57:55.925447",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.57,
+      "swap_usage": 15.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 138397.32,
+      "disk_write_mb": 140023.77,
+      "network_sent_mb": 100.51,
+      "network_recv_mb": 401.11,
+      "network_packets_sent": 316440,
+      "network_packets_recv": 485505,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T00:58:34.967672",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:58:34.967672",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.69,
+      "swap_usage": 15.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 138397.84,
+      "disk_write_mb": 140036.17,
+      "network_sent_mb": 100.6,
+      "network_recv_mb": 401.2,
+      "network_packets_sent": 316811,
+      "network_packets_recv": 486009,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T00:59:13.697797",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:59:13.697797",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.32,
+      "swap_usage": 15.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 138399.18,
+      "disk_write_mb": 140053.74,
+      "network_sent_mb": 101.49,
+      "network_recv_mb": 401.9,
+      "network_packets_sent": 317872,
+      "network_packets_recv": 487405,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T00:59:51.402291",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T00:59:51.402291",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.35,
+      "swap_usage": 15.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 138405.15,
+      "disk_write_mb": 140103.63,
+      "network_sent_mb": 101.61,
+      "network_recv_mb": 402.1,
+      "network_packets_sent": 318202,
+      "network_packets_recv": 487881,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.86,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260121_01.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260121_01.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ received_data_sysmon/Ilina-laptop/20260121_01.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -0,0 +1,8903 @@
+[
+  {
+    "timestamp": "2026-01-21T01:00:26.454897",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:00:26.454897",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.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": 15.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 138405.57,
+      "disk_write_mb": 140114.75,
+      "network_sent_mb": 101.71,
+      "network_recv_mb": 402.21,
+      "network_packets_sent": 318474,
+      "network_packets_recv": 488227,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:01:05.988088",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:01:05.988088",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.43,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 138442.86,
+      "disk_write_mb": 140166.84,
+      "network_sent_mb": 101.85,
+      "network_recv_mb": 402.32,
+      "network_packets_sent": 318783,
+      "network_packets_recv": 488621,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:01:44.760288",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:01:44.760288",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.63,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 138447.17,
+      "disk_write_mb": 140229.27,
+      "network_sent_mb": 102.1,
+      "network_recv_mb": 402.53,
+      "network_packets_sent": 319376,
+      "network_packets_recv": 489365,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:02:24.169933",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:02:24.169933",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.71,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 138447.55,
+      "disk_write_mb": 140242.91,
+      "network_sent_mb": 102.19,
+      "network_recv_mb": 402.68,
+      "network_packets_sent": 319976,
+      "network_packets_recv": 490226,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:03:02.621165",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:03:02.621165",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.55,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 138499.0,
+      "disk_write_mb": 140278.96,
+      "network_sent_mb": 103.46,
+      "network_recv_mb": 404.89,
+      "network_packets_sent": 321927,
+      "network_packets_recv": 493360,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:03:43.039122",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:03:43.039122",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.46,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 138500.52,
+      "disk_write_mb": 140308.84,
+      "network_sent_mb": 103.57,
+      "network_recv_mb": 404.96,
+      "network_packets_sent": 322166,
+      "network_packets_recv": 493678,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:04:21.074887",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:04:21.074887",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 71.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.22,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 138500.93,
+      "disk_write_mb": 140381.21,
+      "network_sent_mb": 103.67,
+      "network_recv_mb": 405.05,
+      "network_packets_sent": 322403,
+      "network_packets_recv": 494008,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:04:59.359016",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:04:59.359016",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 72.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.36,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138585.17,
+      "disk_write_mb": 140443.74,
+      "network_sent_mb": 104.12,
+      "network_recv_mb": 405.18,
+      "network_packets_sent": 322812,
+      "network_packets_recv": 494584,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:05:39.407010",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:05:39.407010",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.83,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138587.27,
+      "disk_write_mb": 140464.97,
+      "network_sent_mb": 104.42,
+      "network_recv_mb": 405.45,
+      "network_packets_sent": 323504,
+      "network_packets_recv": 495304,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:06:17.490692",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:06:17.490692",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.84,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138592.5,
+      "disk_write_mb": 140477.51,
+      "network_sent_mb": 104.59,
+      "network_recv_mb": 405.76,
+      "network_packets_sent": 324273,
+      "network_packets_recv": 496409,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.97,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:06:55.142189",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:06:55.142189",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.74,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138604.87,
+      "disk_write_mb": 140500.88,
+      "network_sent_mb": 104.73,
+      "network_recv_mb": 405.86,
+      "network_packets_sent": 324570,
+      "network_packets_recv": 496794,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:07:33.814741",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:07:33.814741",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.59,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138624.9,
+      "disk_write_mb": 140544.14,
+      "network_sent_mb": 104.83,
+      "network_recv_mb": 405.94,
+      "network_packets_sent": 324795,
+      "network_packets_recv": 497125,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 162.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:08:13.326831",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:08:13.326831",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 74.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.66,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138625.67,
+      "disk_write_mb": 140559.69,
+      "network_sent_mb": 104.92,
+      "network_recv_mb": 406.09,
+      "network_packets_sent": 325044,
+      "network_packets_recv": 497520,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:08:51.333957",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:08:51.333957",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.9,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138630.63,
+      "disk_write_mb": 140576.54,
+      "network_sent_mb": 105.15,
+      "network_recv_mb": 406.41,
+      "network_packets_sent": 326167,
+      "network_packets_recv": 498940,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:09:29.561265",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:09:29.561265",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.71,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.33,
+      "disk_read_mb": 138632.51,
+      "disk_write_mb": 140597.08,
+      "network_sent_mb": 106.11,
+      "network_recv_mb": 407.14,
+      "network_packets_sent": 327344,
+      "network_packets_recv": 500392,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.33,
+          "free_gb": 174.61,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:10:09.035404",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:10:09.035404",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.59,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138648.53,
+      "disk_write_mb": 140631.38,
+      "network_sent_mb": 106.24,
+      "network_recv_mb": 407.23,
+      "network_packets_sent": 327662,
+      "network_packets_recv": 500806,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.03,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:10:48.046416",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:10:48.046416",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.94,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138673.06,
+      "disk_write_mb": 140651.93,
+      "network_sent_mb": 106.4,
+      "network_recv_mb": 407.47,
+      "network_packets_sent": 328171,
+      "network_packets_recv": 501462,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:11:27.426627",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:11:27.426627",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.8,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138675.58,
+      "disk_write_mb": 140666.28,
+      "network_sent_mb": 106.47,
+      "network_recv_mb": 407.54,
+      "network_packets_sent": 328335,
+      "network_packets_recv": 501718,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:12:02.784922",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:12:02.784922",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.05,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138676.02,
+      "disk_write_mb": 140677.53,
+      "network_sent_mb": 106.64,
+      "network_recv_mb": 407.69,
+      "network_packets_sent": 328672,
+      "network_packets_recv": 502150,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.07,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:12:42.661699",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:12:42.661699",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.06,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138677.76,
+      "disk_write_mb": 140694.95,
+      "network_sent_mb": 106.78,
+      "network_recv_mb": 407.89,
+      "network_packets_sent": 329486,
+      "network_packets_recv": 503429,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:13:20.502925",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:13:20.502925",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 73.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.45,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138678.48,
+      "disk_write_mb": 140706.21,
+      "network_sent_mb": 106.84,
+      "network_recv_mb": 407.98,
+      "network_packets_sent": 329694,
+      "network_packets_recv": 503747,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.09,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:13:59.755474",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:13:59.755474",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.7,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138679.5,
+      "disk_write_mb": 140723.48,
+      "network_sent_mb": 107.76,
+      "network_recv_mb": 408.68,
+      "network_packets_sent": 330737,
+      "network_packets_recv": 505082,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:14:39.705911",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:14:39.705911",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 74.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.65,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138689.54,
+      "disk_write_mb": 140738.65,
+      "network_sent_mb": 107.82,
+      "network_recv_mb": 408.75,
+      "network_packets_sent": 330924,
+      "network_packets_recv": 505379,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:15:14.847392",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:15:14.847392",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 73.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.54,
+      "swap_usage": 14.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138692.66,
+      "disk_write_mb": 140769.3,
+      "network_sent_mb": 107.95,
+      "network_recv_mb": 408.81,
+      "network_packets_sent": 331168,
+      "network_packets_recv": 505684,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:15:50.856191",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:15:50.856191",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 75.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.8,
+      "swap_usage": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138840.29,
+      "disk_write_mb": 140787.84,
+      "network_sent_mb": 108.02,
+      "network_recv_mb": 408.89,
+      "network_packets_sent": 331345,
+      "network_packets_recv": 505964,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:16:29.885103",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:16:29.885103",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.06,
+      "swap_usage": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138840.54,
+      "disk_write_mb": 140800.43,
+      "network_sent_mb": 108.23,
+      "network_recv_mb": 409.09,
+      "network_packets_sent": 332230,
+      "network_packets_recv": 507190,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:17:07.432655",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:17:07.432655",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.26,
+      "swap_usage": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138862.48,
+      "disk_write_mb": 140832.39,
+      "network_sent_mb": 108.27,
+      "network_recv_mb": 409.14,
+      "network_packets_sent": 332401,
+      "network_packets_recv": 507473,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:17:42.672898",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:17:42.672898",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.34,
+      "swap_usage": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138863.51,
+      "disk_write_mb": 140855.34,
+      "network_sent_mb": 108.42,
+      "network_recv_mb": 409.26,
+      "network_packets_sent": 332737,
+      "network_packets_recv": 507888,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:18:19.952303",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:18:19.952303",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.06,
+      "swap_usage": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138874.92,
+      "disk_write_mb": 140904.01,
+      "network_sent_mb": 108.55,
+      "network_recv_mb": 409.33,
+      "network_packets_sent": 332982,
+      "network_packets_recv": 508206,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:18:55.275200",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:18:55.275200",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.3,
+      "swap_usage": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138878.87,
+      "disk_write_mb": 140960.0,
+      "network_sent_mb": 108.67,
+      "network_recv_mb": 409.45,
+      "network_packets_sent": 333249,
+      "network_packets_recv": 508583,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:19:32.437774",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:19:32.437774",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.2,
+      "swap_usage": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138884.44,
+      "disk_write_mb": 141006.81,
+      "network_sent_mb": 108.76,
+      "network_recv_mb": 409.54,
+      "network_packets_sent": 333517,
+      "network_packets_recv": 508947,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:20:10.785810",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:20:10.785810",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.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": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138884.5,
+      "disk_write_mb": 141018.45,
+      "network_sent_mb": 108.95,
+      "network_recv_mb": 409.72,
+      "network_packets_sent": 334328,
+      "network_packets_recv": 510010,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:20:48.488007",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:20:48.488007",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.39,
+      "swap_usage": 14.3,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138884.83,
+      "disk_write_mb": 141048.02,
+      "network_sent_mb": 109.04,
+      "network_recv_mb": 409.88,
+      "network_packets_sent": 335026,
+      "network_packets_recv": 510901,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:21:26.738035",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:21:26.738035",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.52,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138904.47,
+      "disk_write_mb": 141060.91,
+      "network_sent_mb": 109.21,
+      "network_recv_mb": 409.99,
+      "network_packets_sent": 335362,
+      "network_packets_recv": 511296,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:22:06.505231",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:22:06.505231",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.34,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138904.53,
+      "disk_write_mb": 141094.85,
+      "network_sent_mb": 109.34,
+      "network_recv_mb": 410.14,
+      "network_packets_sent": 335751,
+      "network_packets_recv": 511805,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:22:46.342926",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:22:46.342926",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.26,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138904.83,
+      "disk_write_mb": 141163.02,
+      "network_sent_mb": 109.5,
+      "network_recv_mb": 410.26,
+      "network_packets_sent": 336109,
+      "network_packets_recv": 512310,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:23:24.325852",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:23:24.325852",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.29,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138905.13,
+      "disk_write_mb": 141173.86,
+      "network_sent_mb": 109.63,
+      "network_recv_mb": 410.36,
+      "network_packets_sent": 336508,
+      "network_packets_recv": 512896,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:24:02.816333",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:24:02.816333",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.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": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138905.29,
+      "disk_write_mb": 141191.65,
+      "network_sent_mb": 109.82,
+      "network_recv_mb": 410.61,
+      "network_packets_sent": 336987,
+      "network_packets_recv": 513496,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:24:41.280657",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:24:41.280657",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.12,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138915.81,
+      "disk_write_mb": 141203.87,
+      "network_sent_mb": 109.99,
+      "network_recv_mb": 410.71,
+      "network_packets_sent": 337343,
+      "network_packets_recv": 513923,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:25:20.946299",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:25:20.946299",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.17,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138929.5,
+      "disk_write_mb": 141216.8,
+      "network_sent_mb": 110.27,
+      "network_recv_mb": 412.01,
+      "network_packets_sent": 338619,
+      "network_packets_recv": 515551,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:25:59.128301",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:25:59.128301",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.26,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138949.74,
+      "disk_write_mb": 141231.15,
+      "network_sent_mb": 110.44,
+      "network_recv_mb": 412.2,
+      "network_packets_sent": 339316,
+      "network_packets_recv": 516486,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:26:36.478753",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:26:36.478753",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.01,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138951.15,
+      "disk_write_mb": 141247.89,
+      "network_sent_mb": 111.44,
+      "network_recv_mb": 412.97,
+      "network_packets_sent": 340528,
+      "network_packets_recv": 517975,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:27:16.082858",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:27:16.082858",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.9,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138951.54,
+      "disk_write_mb": 141261.86,
+      "network_sent_mb": 111.51,
+      "network_recv_mb": 413.03,
+      "network_packets_sent": 340724,
+      "network_packets_recv": 518269,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:27:54.598765",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:27:54.598765",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 77.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.11,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138953.67,
+      "disk_write_mb": 141275.88,
+      "network_sent_mb": 111.71,
+      "network_recv_mb": 413.22,
+      "network_packets_sent": 341474,
+      "network_packets_recv": 519280,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:28:32.170249",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:28:32.170249",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 78.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.26,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138954.04,
+      "disk_write_mb": 141285.34,
+      "network_sent_mb": 111.84,
+      "network_recv_mb": 413.31,
+      "network_packets_sent": 341728,
+      "network_packets_recv": 519641,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:29:11.188658",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:29:11.188658",
+      "is_sysmon_available": false,
+      "cpu_usage": 39.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.03,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138963.05,
+      "disk_write_mb": 141295.93,
+      "network_sent_mb": 111.92,
+      "network_recv_mb": 413.36,
+      "network_packets_sent": 341904,
+      "network_packets_recv": 519911,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:29:46.403182",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:29:46.403182",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.14,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138963.2,
+      "disk_write_mb": 141344.48,
+      "network_sent_mb": 112.04,
+      "network_recv_mb": 413.43,
+      "network_packets_sent": 342135,
+      "network_packets_recv": 520232,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:30:24.701677",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:30:24.701677",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.17,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138963.45,
+      "disk_write_mb": 141357.16,
+      "network_sent_mb": 112.18,
+      "network_recv_mb": 413.53,
+      "network_packets_sent": 342446,
+      "network_packets_recv": 520623,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:30:59.905216",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:30:59.905216",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.12,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138963.72,
+      "disk_write_mb": 141370.61,
+      "network_sent_mb": 112.29,
+      "network_recv_mb": 413.63,
+      "network_packets_sent": 342662,
+      "network_packets_recv": 520909,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:31:35.359548",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:31:35.359548",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.14,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138964.2,
+      "disk_write_mb": 141416.36,
+      "network_sent_mb": 112.43,
+      "network_recv_mb": 413.69,
+      "network_packets_sent": 342917,
+      "network_packets_recv": 521213,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:32:14.122539",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:32:14.122539",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.54,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138964.41,
+      "disk_write_mb": 141470.58,
+      "network_sent_mb": 112.52,
+      "network_recv_mb": 413.91,
+      "network_packets_sent": 343269,
+      "network_packets_recv": 521710,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:32:53.413935",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:32:53.413935",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.63,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138966.8,
+      "disk_write_mb": 141491.76,
+      "network_sent_mb": 112.84,
+      "network_recv_mb": 414.46,
+      "network_packets_sent": 343926,
+      "network_packets_recv": 522480,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:33:32.453270",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:33:32.453270",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.5,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138967.46,
+      "disk_write_mb": 141506.17,
+      "network_sent_mb": 113.02,
+      "network_recv_mb": 414.66,
+      "network_packets_sent": 344678,
+      "network_packets_recv": 523569,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:34:10.214813",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:34:10.214813",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.93,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138969.93,
+      "disk_write_mb": 141520.79,
+      "network_sent_mb": 113.24,
+      "network_recv_mb": 415.0,
+      "network_packets_sent": 345209,
+      "network_packets_recv": 524261,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:34:49.171808",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:34:49.171808",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.14,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138980.72,
+      "disk_write_mb": 141540.53,
+      "network_sent_mb": 114.15,
+      "network_recv_mb": 415.57,
+      "network_packets_sent": 346249,
+      "network_packets_recv": 525479,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.45,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:35:24.822354",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:35:24.822354",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 79.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.37,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.35,
+      "disk_read_mb": 138982.78,
+      "disk_write_mb": 141565.5,
+      "network_sent_mb": 114.31,
+      "network_recv_mb": 415.85,
+      "network_packets_sent": 346797,
+      "network_packets_recv": 526188,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.35,
+          "free_gb": 174.59,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:36:04.184095",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:36:04.184095",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.44,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138987.94,
+      "disk_write_mb": 141603.28,
+      "network_sent_mb": 114.59,
+      "network_recv_mb": 416.09,
+      "network_packets_sent": 347261,
+      "network_packets_recv": 526827,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:36:43.212853",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:36:43.212853",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 80.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.54,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138988.01,
+      "disk_write_mb": 141614.86,
+      "network_sent_mb": 114.69,
+      "network_recv_mb": 416.24,
+      "network_packets_sent": 348015,
+      "network_packets_recv": 527949,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:37:20.861352",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:37:20.861352",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.7,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138990.14,
+      "disk_write_mb": 141624.97,
+      "network_sent_mb": 114.74,
+      "network_recv_mb": 416.31,
+      "network_packets_sent": 348326,
+      "network_packets_recv": 528393,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:37:56.973775",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:37:56.973775",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.25,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138990.96,
+      "disk_write_mb": 141673.81,
+      "network_sent_mb": 115.73,
+      "network_recv_mb": 417.11,
+      "network_packets_sent": 349539,
+      "network_packets_recv": 529978,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:38:36.086479",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:38:36.086479",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 77.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.04,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 138991.59,
+      "disk_write_mb": 141682.19,
+      "network_sent_mb": 115.77,
+      "network_recv_mb": 417.15,
+      "network_packets_sent": 349665,
+      "network_packets_recv": 530202,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.51,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:39:11.698114",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:39:11.698114",
+      "is_sysmon_available": false,
+      "cpu_usage": 80.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.26,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 139001.53,
+      "disk_write_mb": 141686.27,
+      "network_sent_mb": 115.84,
+      "network_recv_mb": 417.25,
+      "network_packets_sent": 349880,
+      "network_packets_recv": 530565,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.52,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:39:48.360737",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:39:48.360737",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 78.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.2,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 139002.03,
+      "disk_write_mb": 141751.04,
+      "network_sent_mb": 115.91,
+      "network_recv_mb": 417.3,
+      "network_packets_sent": 350061,
+      "network_packets_recv": 530837,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.53,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:40:28.792701",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:40:28.792701",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.5,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 139002.56,
+      "disk_write_mb": 141783.65,
+      "network_sent_mb": 116.14,
+      "network_recv_mb": 417.65,
+      "network_packets_sent": 351448,
+      "network_packets_recv": 533555,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.54,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:41:06.825162",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:41:06.825162",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.84,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 139038.34,
+      "disk_write_mb": 141799.01,
+      "network_sent_mb": 116.3,
+      "network_recv_mb": 418.02,
+      "network_packets_sent": 352893,
+      "network_packets_recv": 536443,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.55,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:41:46.270138",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:41:46.270138",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.76,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 139038.85,
+      "disk_write_mb": 141809.99,
+      "network_sent_mb": 116.34,
+      "network_recv_mb": 418.06,
+      "network_packets_sent": 353030,
+      "network_packets_recv": 536692,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.56,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:42:26.004350",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:42:26.004350",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 76.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.99,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 139039.26,
+      "disk_write_mb": 141822.77,
+      "network_sent_mb": 116.51,
+      "network_recv_mb": 418.36,
+      "network_packets_sent": 353569,
+      "network_packets_recv": 537434,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.57,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:43:05.612391",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:43:05.612391",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 76.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.9,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 139043.52,
+      "disk_write_mb": 141837.36,
+      "network_sent_mb": 116.6,
+      "network_recv_mb": 418.58,
+      "network_packets_sent": 353860,
+      "network_packets_recv": 537920,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.58,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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-21T01:43:44.478698",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.0.29",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T01:43:44.478698",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 75.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 11.73,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.34,
+      "disk_read_mb": 139044.26,
+      "disk_write_mb": 141846.44,
+      "network_sent_mb": 116.68,
+      "network_recv_mb": 418.7,
+      "network_packets_sent": 354168,
+      "network_packets_recv": 538350,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 163.59,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.34,
+          "free_gb": 174.6,
+          "percent_used": 63.3
+        }
+      ],
+      "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.0.29",
+            "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
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260121_12.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260121_12.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ received_data_sysmon/Ilina-laptop/20260121_12.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -0,0 +1,7355 @@
+[
+  {
+    "timestamp": "2026-01-21T12:16:12.773945",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:16:12.773945",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.88,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 141949.94,
+      "disk_write_mb": 142612.81,
+      "network_sent_mb": 6.9,
+      "network_recv_mb": 21.74,
+      "network_packets_sent": 18022,
+      "network_packets_recv": 33657,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:16:48.319819",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:16:48.319819",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.89,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 141953.36,
+      "disk_write_mb": 142664.06,
+      "network_sent_mb": 6.93,
+      "network_recv_mb": 21.78,
+      "network_packets_sent": 18121,
+      "network_packets_recv": 33942,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:17:26.370838",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:17:26.370838",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.8,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 141953.62,
+      "disk_write_mb": 142679.77,
+      "network_sent_mb": 6.98,
+      "network_recv_mb": 21.83,
+      "network_packets_sent": 18312,
+      "network_packets_recv": 34328,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:18:05.471538",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:18:05.471538",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.68,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 141954.08,
+      "disk_write_mb": 142690.8,
+      "network_sent_mb": 7.02,
+      "network_recv_mb": 21.89,
+      "network_packets_sent": 18437,
+      "network_packets_recv": 34674,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:18:44.316834",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:18:44.316834",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.03,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.37,
+      "disk_read_mb": 141968.6,
+      "disk_write_mb": 142704.85,
+      "network_sent_mb": 7.19,
+      "network_recv_mb": 22.05,
+      "network_packets_sent": 18870,
+      "network_packets_recv": 35290,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.37,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:19:24.778577",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:19:24.778577",
+      "is_sysmon_available": false,
+      "cpu_usage": 33.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.69,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.39,
+      "disk_read_mb": 142007.94,
+      "disk_write_mb": 142810.44,
+      "network_sent_mb": 9.43,
+      "network_recv_mb": 43.7,
+      "network_packets_sent": 30985,
+      "network_packets_recv": 55627,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.19,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.39,
+          "free_gb": 174.55,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:20:03.944609",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:20:03.944609",
+      "is_sysmon_available": false,
+      "cpu_usage": 27.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 86.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.54,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142008.94,
+      "disk_write_mb": 142860.73,
+      "network_sent_mb": 10.22,
+      "network_recv_mb": 57.53,
+      "network_packets_sent": 35261,
+      "network_packets_recv": 67917,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:20:44.056274",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:20:44.056274",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.9,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142013.18,
+      "disk_write_mb": 142884.25,
+      "network_sent_mb": 10.65,
+      "network_recv_mb": 57.88,
+      "network_packets_sent": 35999,
+      "network_packets_recv": 68822,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:21:22.025936",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:21:22.025936",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.08,
+      "swap_usage": 13.9,
+      "disk_usage": 63.4,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.67,
+      "disk_read_mb": 142279.88,
+      "disk_write_mb": 143245.47,
+      "network_sent_mb": 10.87,
+      "network_recv_mb": 59.74,
+      "network_packets_sent": 36989,
+      "network_packets_recv": 70007,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.67,
+          "free_gb": 174.27,
+          "percent_used": 63.4
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:22:03.185739",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:22:03.185739",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.97,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142392.35,
+      "disk_write_mb": 143264.24,
+      "network_sent_mb": 10.98,
+      "network_recv_mb": 59.83,
+      "network_packets_sent": 37275,
+      "network_packets_recv": 70453,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:22:44.615579",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:22:44.615579",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142424.68,
+      "disk_write_mb": 143279.65,
+      "network_sent_mb": 11.08,
+      "network_recv_mb": 59.9,
+      "network_packets_sent": 37510,
+      "network_packets_recv": 70857,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:23:22.473911",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:23:22.473911",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.72,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142425.61,
+      "disk_write_mb": 143308.25,
+      "network_sent_mb": 11.38,
+      "network_recv_mb": 60.1,
+      "network_packets_sent": 37913,
+      "network_packets_recv": 71424,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:24:00.524222",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:24:00.524222",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.78,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142426.27,
+      "disk_write_mb": 143325.25,
+      "network_sent_mb": 11.52,
+      "network_recv_mb": 60.27,
+      "network_packets_sent": 38560,
+      "network_packets_recv": 72440,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:24:37.942033",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:24:37.942033",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.99,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142426.64,
+      "disk_write_mb": 143335.79,
+      "network_sent_mb": 11.65,
+      "network_recv_mb": 60.34,
+      "network_packets_sent": 38782,
+      "network_packets_recv": 72836,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:25:16.856243",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:25:16.856243",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.7,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142454.89,
+      "disk_write_mb": 143348.18,
+      "network_sent_mb": 11.71,
+      "network_recv_mb": 60.39,
+      "network_packets_sent": 38931,
+      "network_packets_recv": 73115,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:25:52.089414",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:25:52.089414",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.8,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142455.05,
+      "disk_write_mb": 143358.79,
+      "network_sent_mb": 11.79,
+      "network_recv_mb": 60.46,
+      "network_packets_sent": 39075,
+      "network_packets_recv": 73441,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:26:30.927346",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:26:30.927346",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.84,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142455.13,
+      "disk_write_mb": 143372.02,
+      "network_sent_mb": 11.94,
+      "network_recv_mb": 60.61,
+      "network_packets_sent": 39593,
+      "network_packets_recv": 74320,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:27:08.368634",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:27:08.368634",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 82.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.83,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142455.46,
+      "disk_write_mb": 143384.37,
+      "network_sent_mb": 12.07,
+      "network_recv_mb": 60.68,
+      "network_packets_sent": 39820,
+      "network_packets_recv": 74761,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:27:46.770301",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:27:46.770301",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.55,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142456.19,
+      "disk_write_mb": 143396.11,
+      "network_sent_mb": 12.13,
+      "network_recv_mb": 60.74,
+      "network_packets_sent": 39943,
+      "network_packets_recv": 75131,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:28:25.118215",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:28:25.118215",
+      "is_sysmon_available": false,
+      "cpu_usage": 23.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.71,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142456.5,
+      "disk_write_mb": 143407.0,
+      "network_sent_mb": 12.16,
+      "network_recv_mb": 60.78,
+      "network_packets_sent": 40039,
+      "network_packets_recv": 75516,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:29:04.005330",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:29:04.005330",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.5,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142456.54,
+      "disk_write_mb": 143418.76,
+      "network_sent_mb": 12.27,
+      "network_recv_mb": 60.92,
+      "network_packets_sent": 40282,
+      "network_packets_recv": 76082,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:29:40.289586",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:29:40.289586",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.64,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142461.17,
+      "disk_write_mb": 143439.56,
+      "network_sent_mb": 12.36,
+      "network_recv_mb": 60.99,
+      "network_packets_sent": 40492,
+      "network_packets_recv": 76492,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:30:16.950467",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:30:16.950467",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.62,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142462.43,
+      "disk_write_mb": 143491.83,
+      "network_sent_mb": 12.52,
+      "network_recv_mb": 61.11,
+      "network_packets_sent": 40810,
+      "network_packets_recv": 76995,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.37,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:30:55.951355",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:30:55.951355",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 81.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.69,
+      "swap_usage": 13.4,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142464.11,
+      "disk_write_mb": 143504.23,
+      "network_sent_mb": 12.58,
+      "network_recv_mb": 61.17,
+      "network_packets_sent": 40952,
+      "network_packets_recv": 77331,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:31:36.379559",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:31:36.379559",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 80.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.59,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142468.36,
+      "disk_write_mb": 143558.95,
+      "network_sent_mb": 13.04,
+      "network_recv_mb": 61.74,
+      "network_packets_sent": 42084,
+      "network_packets_recv": 78980,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.54,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:32:13.961753",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:32:13.961753",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.8,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142468.54,
+      "disk_write_mb": 143570.61,
+      "network_sent_mb": 13.23,
+      "network_recv_mb": 62.04,
+      "network_packets_sent": 43570,
+      "network_packets_recv": 81432,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:32:51.442173",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:32:51.442173",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 81.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.79,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142468.81,
+      "disk_write_mb": 143591.73,
+      "network_sent_mb": 13.31,
+      "network_recv_mb": 62.19,
+      "network_packets_sent": 44185,
+      "network_packets_recv": 82560,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:33:28.828114",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:33:28.828114",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 82.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.9,
+      "swap_usage": 13.6,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.4,
+      "disk_read_mb": 142469.23,
+      "disk_write_mb": 143602.72,
+      "network_sent_mb": 13.35,
+      "network_recv_mb": 62.24,
+      "network_packets_sent": 44296,
+      "network_packets_recv": 82882,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.4,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:35:26.999929",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:35:26.999929",
+      "is_sysmon_available": false,
+      "cpu_usage": 25.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.76,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.39,
+      "disk_read_mb": 144127.33,
+      "disk_write_mb": 143925.83,
+      "network_sent_mb": 14.3,
+      "network_recv_mb": 74.11,
+      "network_packets_sent": 49804,
+      "network_packets_recv": 89402,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.46,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.39,
+          "free_gb": 174.55,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:36:05.286901",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:36:05.286901",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.54,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 145215.19,
+      "disk_write_mb": 144188.43,
+      "network_sent_mb": 14.35,
+      "network_recv_mb": 74.16,
+      "network_packets_sent": 49930,
+      "network_packets_recv": 89751,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.47,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:36:43.659911",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:36:43.659911",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.5,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.38,
+      "disk_read_mb": 146205.43,
+      "disk_write_mb": 144281.53,
+      "network_sent_mb": 14.38,
+      "network_recv_mb": 74.2,
+      "network_packets_sent": 50068,
+      "network_packets_recv": 90082,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.48,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.38,
+          "free_gb": 174.56,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:37:21.454612",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:37:21.454612",
+      "is_sysmon_available": false,
+      "cpu_usage": 19.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.55,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.39,
+      "disk_read_mb": 146241.42,
+      "disk_write_mb": 144320.1,
+      "network_sent_mb": 14.81,
+      "network_recv_mb": 74.62,
+      "network_packets_sent": 50882,
+      "network_packets_recv": 91270,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.49,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.39,
+          "free_gb": 174.55,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:37:58.791839",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:37:58.791839",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.4,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146255.39,
+      "disk_write_mb": 144388.81,
+      "network_sent_mb": 14.86,
+      "network_recv_mb": 74.67,
+      "network_packets_sent": 51016,
+      "network_packets_recv": 91607,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.5,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:44:24.185548",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:44:24.185548",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.82,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146644.22,
+      "disk_write_mb": 144570.48,
+      "network_sent_mb": 16.56,
+      "network_recv_mb": 105.04,
+      "network_packets_sent": 62967,
+      "network_packets_recv": 108644,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.61,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:45:02.949290",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:45:02.949290",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 85.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.33,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146679.35,
+      "disk_write_mb": 144605.19,
+      "network_sent_mb": 17.12,
+      "network_recv_mb": 105.83,
+      "network_packets_sent": 63907,
+      "network_packets_recv": 110135,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.62,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:45:43.183055",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:45:43.183055",
+      "is_sysmon_available": false,
+      "cpu_usage": 81.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.26,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146700.88,
+      "disk_write_mb": 144622.49,
+      "network_sent_mb": 17.82,
+      "network_recv_mb": 106.14,
+      "network_packets_sent": 64829,
+      "network_packets_recv": 111335,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.63,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:46:24.006018",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:46:24.006018",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 84.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.25,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146709.73,
+      "disk_write_mb": 144706.61,
+      "network_sent_mb": 17.94,
+      "network_recv_mb": 106.28,
+      "network_packets_sent": 65134,
+      "network_packets_recv": 111883,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.64,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:47:03.045413",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:47:03.045413",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.04,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146710.21,
+      "disk_write_mb": 144716.36,
+      "network_sent_mb": 18.17,
+      "network_recv_mb": 106.36,
+      "network_packets_sent": 65439,
+      "network_packets_recv": 112433,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.65,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:47:41.258818",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:47:41.258818",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 83.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.06,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146712.83,
+      "disk_write_mb": 144732.56,
+      "network_sent_mb": 18.37,
+      "network_recv_mb": 106.62,
+      "network_packets_sent": 66483,
+      "network_packets_recv": 114201,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.66,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:48:18.994087",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:48:18.994087",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 79.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 12.41,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146713.02,
+      "disk_write_mb": 144743.89,
+      "network_sent_mb": 18.5,
+      "network_recv_mb": 106.81,
+      "network_packets_sent": 67600,
+      "network_packets_recv": 116038,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.67,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:48:57.987385",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:48:57.987385",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 83.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.11,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146720.37,
+      "disk_write_mb": 144764.57,
+      "network_sent_mb": 19.2,
+      "network_recv_mb": 107.86,
+      "network_packets_sent": 69094,
+      "network_packets_recv": 118935,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.68,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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-21T12:49:35.824248",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:49:35.824248",
+      "is_sysmon_available": false,
+      "cpu_usage": 1.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 87.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.67,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146723.32,
+      "disk_write_mb": 144776.87,
+      "network_sent_mb": 20.12,
+      "network_recv_mb": 108.3,
+      "network_packets_sent": 70438,
+      "network_packets_recv": 120839,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.69,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.53,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:50:14.463935",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:50:14.463935",
+      "is_sysmon_available": false,
+      "cpu_usage": 26.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.8,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146726.95,
+      "disk_write_mb": 144807.82,
+      "network_sent_mb": 20.26,
+      "network_recv_mb": 108.45,
+      "network_packets_sent": 70762,
+      "network_packets_recv": 121400,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.7,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:50:54.759241",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:50:54.759241",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 86.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.57,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.41,
+      "disk_read_mb": 146729.16,
+      "disk_write_mb": 144890.78,
+      "network_sent_mb": 20.32,
+      "network_recv_mb": 108.52,
+      "network_packets_sent": 70940,
+      "network_packets_recv": 121786,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.71,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.41,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:51:34.089417",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:51:34.089417",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.8,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146749.86,
+      "disk_write_mb": 144923.43,
+      "network_sent_mb": 21.37,
+      "network_recv_mb": 117.62,
+      "network_packets_sent": 75741,
+      "network_packets_recv": 127513,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.73,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:52:13.049342",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:52:13.049342",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.65,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146753.75,
+      "disk_write_mb": 144936.35,
+      "network_sent_mb": 21.44,
+      "network_recv_mb": 117.73,
+      "network_packets_sent": 75997,
+      "network_packets_recv": 127961,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.74,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:52:51.542419",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:52:51.542419",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.63,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146757.09,
+      "disk_write_mb": 144947.79,
+      "network_sent_mb": 21.47,
+      "network_recv_mb": 117.78,
+      "network_packets_sent": 76131,
+      "network_packets_recv": 128268,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.75,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:53:30.171791",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:53:30.171791",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 86.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.49,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146757.51,
+      "disk_write_mb": 144972.04,
+      "network_sent_mb": 21.51,
+      "network_recv_mb": 117.81,
+      "network_packets_sent": 76254,
+      "network_packets_recv": 128573,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.76,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:54:09.153429",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:54:09.153429",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.61,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146770.8,
+      "disk_write_mb": 144985.21,
+      "network_sent_mb": 21.75,
+      "network_recv_mb": 118.64,
+      "network_packets_sent": 76835,
+      "network_packets_recv": 129679,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.77,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:54:47.783322",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:54:47.783322",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.7,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146771.31,
+      "disk_write_mb": 144998.95,
+      "network_sent_mb": 21.96,
+      "network_recv_mb": 118.8,
+      "network_packets_sent": 77263,
+      "network_packets_recv": 130352,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.78,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:55:26.586028",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:55:26.586028",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.61,
+      "swap_usage": 14.2,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146771.79,
+      "disk_write_mb": 145009.96,
+      "network_sent_mb": 22.1,
+      "network_recv_mb": 118.86,
+      "network_packets_sent": 77518,
+      "network_packets_recv": 130746,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.79,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:56:05.659057",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:56:05.659057",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.72,
+      "swap_usage": 13.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146835.43,
+      "disk_write_mb": 145019.84,
+      "network_sent_mb": 22.24,
+      "network_recv_mb": 118.99,
+      "network_packets_sent": 77870,
+      "network_packets_recv": 131313,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.8,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:56:43.263943",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:56:43.263943",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.85,
+      "swap_usage": 13.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.42,
+      "disk_read_mb": 146846.45,
+      "disk_write_mb": 145044.48,
+      "network_sent_mb": 22.96,
+      "network_recv_mb": 124.13,
+      "network_packets_sent": 80264,
+      "network_packets_recv": 136757,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.81,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.42,
+          "free_gb": 174.52,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:57:22.711661",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:57:22.711661",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 91.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.22,
+      "swap_usage": 13.8,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.44,
+      "disk_read_mb": 146880.06,
+      "disk_write_mb": 145086.59,
+      "network_sent_mb": 24.25,
+      "network_recv_mb": 132.24,
+      "network_packets_sent": 85172,
+      "network_packets_recv": 143004,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.82,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.44,
+          "free_gb": 174.5,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:58:02.226259",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:58:02.226259",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 88.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.89,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.44,
+      "disk_read_mb": 146883.67,
+      "disk_write_mb": 145133.12,
+      "network_sent_mb": 24.54,
+      "network_recv_mb": 134.6,
+      "network_packets_sent": 86245,
+      "network_packets_recv": 145770,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.83,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.44,
+          "free_gb": 174.5,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:58:41.528895",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:58:41.528895",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.17,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.44,
+      "disk_read_mb": 146885.47,
+      "disk_write_mb": 145143.77,
+      "network_sent_mb": 24.89,
+      "network_recv_mb": 134.71,
+      "network_packets_sent": 86571,
+      "network_packets_recv": 146488,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.84,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.44,
+          "free_gb": 174.49,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T12:59:20.320321",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:59:20.320321",
+      "is_sysmon_available": false,
+      "cpu_usage": 18.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 90.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.17,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 146888.16,
+      "disk_write_mb": 145157.59,
+      "network_sent_mb": 25.18,
+      "network_recv_mb": 135.52,
+      "network_packets_sent": 87348,
+      "network_packets_recv": 147558,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.85,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.49,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  }
+]
Index: received_data_sysmon/Ilina-laptop/20260121_13.json
===================================================================
--- received_data_sysmon/Ilina-laptop/20260121_13.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
+++ received_data_sysmon/Ilina-laptop/20260121_13.json	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -0,0 +1,7355 @@
+[
+  {
+    "timestamp": "2026-01-21T12:59:59.746181",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T12:59:59.746181",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.51,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 146905.67,
+      "disk_write_mb": 145199.13,
+      "network_sent_mb": 26.07,
+      "network_recv_mb": 141.28,
+      "network_packets_sent": 91272,
+      "network_packets_recv": 153108,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.87,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.49,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:00:38.588903",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:00:38.588903",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.32,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 146911.6,
+      "disk_write_mb": 145264.19,
+      "network_sent_mb": 26.39,
+      "network_recv_mb": 143.45,
+      "network_packets_sent": 92480,
+      "network_packets_recv": 154685,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.88,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:01:16.976385",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:01:16.976385",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.62,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 146943.75,
+      "disk_write_mb": 145285.4,
+      "network_sent_mb": 27.18,
+      "network_recv_mb": 143.96,
+      "network_packets_sent": 93609,
+      "network_packets_recv": 156170,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.89,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:01:56.761508",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:01:56.761508",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1457.0,
+      "ram_usage": 91.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.36,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 146947.68,
+      "disk_write_mb": 145308.18,
+      "network_sent_mb": 27.94,
+      "network_recv_mb": 147.73,
+      "network_packets_sent": 95434,
+      "network_packets_recv": 160128,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.9,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:02:36.768885",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:02:36.768885",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.42,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 146957.7,
+      "disk_write_mb": 145344.77,
+      "network_sent_mb": 28.22,
+      "network_recv_mb": 147.83,
+      "network_packets_sent": 95777,
+      "network_packets_recv": 160832,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.91,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:03:16.482502",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:03:16.482502",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.29,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 146961.67,
+      "disk_write_mb": 145359.03,
+      "network_sent_mb": 28.51,
+      "network_recv_mb": 148.04,
+      "network_packets_sent": 96099,
+      "network_packets_recv": 161632,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.92,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:03:55.361877",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:03:55.361877",
+      "is_sysmon_available": false,
+      "cpu_usage": 71.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.34,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 146976.86,
+      "disk_write_mb": 145377.48,
+      "network_sent_mb": 28.66,
+      "network_recv_mb": 148.27,
+      "network_packets_sent": 96617,
+      "network_packets_recv": 162429,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.93,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:04:36.982500",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:04:36.982500",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.34,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 146977.24,
+      "disk_write_mb": 145406.11,
+      "network_sent_mb": 28.87,
+      "network_recv_mb": 148.38,
+      "network_packets_sent": 97006,
+      "network_packets_recv": 163088,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.94,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:05:15.884391",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:05:15.884391",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.48,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 146987.79,
+      "disk_write_mb": 145420.38,
+      "network_sent_mb": 29.15,
+      "network_recv_mb": 149.19,
+      "network_packets_sent": 97592,
+      "network_packets_recv": 164421,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.95,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:05:55.992919",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:05:55.992919",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.51,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147132.97,
+      "disk_write_mb": 145466.17,
+      "network_sent_mb": 29.49,
+      "network_recv_mb": 150.66,
+      "network_packets_sent": 98461,
+      "network_packets_recv": 166039,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.96,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:06:33.564043",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:06:33.564043",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.77,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147281.11,
+      "disk_write_mb": 145490.82,
+      "network_sent_mb": 29.74,
+      "network_recv_mb": 151.1,
+      "network_packets_sent": 99080,
+      "network_packets_recv": 166982,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.98,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:07:14.239309",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:07:14.239309",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.79,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147307.73,
+      "disk_write_mb": 145508.58,
+      "network_sent_mb": 29.89,
+      "network_recv_mb": 152.67,
+      "network_packets_sent": 99795,
+      "network_packets_recv": 168925,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 174.99,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:07:53.564983",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:07:53.564983",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.76,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147313.5,
+      "disk_write_mb": 145523.52,
+      "network_sent_mb": 30.05,
+      "network_recv_mb": 153.32,
+      "network_packets_sent": 100231,
+      "network_packets_recv": 169935,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.0,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:08:30.891318",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:08:30.891318",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 92.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.53,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147315.44,
+      "disk_write_mb": 145535.01,
+      "network_sent_mb": 30.14,
+      "network_recv_mb": 153.38,
+      "network_packets_sent": 100426,
+      "network_packets_recv": 170367,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.01,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:09:08.254241",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:09:08.254241",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.79,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147317.37,
+      "disk_write_mb": 145557.98,
+      "network_sent_mb": 30.53,
+      "network_recv_mb": 154.05,
+      "network_packets_sent": 101268,
+      "network_packets_recv": 171840,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.02,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:09:45.188254",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:09:45.188254",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.63,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147329.46,
+      "disk_write_mb": 145586.85,
+      "network_sent_mb": 30.98,
+      "network_recv_mb": 156.19,
+      "network_packets_sent": 102895,
+      "network_packets_recv": 174846,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.03,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:10:22.045093",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:10:22.045093",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.7,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147348.71,
+      "disk_write_mb": 145603.96,
+      "network_sent_mb": 31.13,
+      "network_recv_mb": 157.25,
+      "network_packets_sent": 103470,
+      "network_packets_recv": 176293,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.04,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.47,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:10:59.440857",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:10:59.440857",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 93.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.64,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147350.1,
+      "disk_write_mb": 145617.83,
+      "network_sent_mb": 31.26,
+      "network_recv_mb": 157.36,
+      "network_packets_sent": 103768,
+      "network_packets_recv": 176820,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.05,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.47,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:11:35.986091",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:11:35.986091",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 15.0,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.47,
+      "disk_read_mb": 147379.99,
+      "disk_write_mb": 145645.47,
+      "network_sent_mb": 31.87,
+      "network_recv_mb": 159.56,
+      "network_packets_sent": 105438,
+      "network_packets_recv": 179299,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.06,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.47,
+          "free_gb": 174.47,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:12:14.025754",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:12:14.025754",
+      "is_sysmon_available": false,
+      "cpu_usage": 17.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 95.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 15.0,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147414.03,
+      "disk_write_mb": 145715.22,
+      "network_sent_mb": 33.38,
+      "network_recv_mb": 168.75,
+      "network_packets_sent": 109665,
+      "network_packets_recv": 188970,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.07,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:12:51.824578",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:12:51.824578",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.11,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147416.63,
+      "disk_write_mb": 145728.44,
+      "network_sent_mb": 33.48,
+      "network_recv_mb": 168.82,
+      "network_packets_sent": 109933,
+      "network_packets_recv": 189490,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.08,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:13:28.966855",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:13:28.966855",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.04,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147423.88,
+      "disk_write_mb": 145746.21,
+      "network_sent_mb": 33.67,
+      "network_recv_mb": 168.95,
+      "network_packets_sent": 110295,
+      "network_packets_recv": 190118,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.09,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:14:07.167666",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:14:07.167666",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.11,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147457.99,
+      "disk_write_mb": 145759.3,
+      "network_sent_mb": 33.9,
+      "network_recv_mb": 170.43,
+      "network_packets_sent": 111015,
+      "network_packets_recv": 191983,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.1,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.49,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:14:44.612499",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:14:44.612499",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.94,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147459.12,
+      "disk_write_mb": 145771.8,
+      "network_sent_mb": 33.98,
+      "network_recv_mb": 170.52,
+      "network_packets_sent": 111222,
+      "network_packets_recv": 192451,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.11,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.49,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:15:21.732438",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:15:21.732438",
+      "is_sysmon_available": false,
+      "cpu_usage": 9.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.9,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147459.5,
+      "disk_write_mb": 145780.92,
+      "network_sent_mb": 34.05,
+      "network_recv_mb": 170.58,
+      "network_packets_sent": 111410,
+      "network_packets_recv": 192891,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.12,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.49,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:15:58.958657",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:15:58.958657",
+      "is_sysmon_available": false,
+      "cpu_usage": 16.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.09,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147459.89,
+      "disk_write_mb": 145790.35,
+      "network_sent_mb": 34.24,
+      "network_recv_mb": 170.69,
+      "network_packets_sent": 111760,
+      "network_packets_recv": 193421,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.13,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.49,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:16:38.012346",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:16:38.012346",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.9,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147479.86,
+      "disk_write_mb": 145824.67,
+      "network_sent_mb": 34.44,
+      "network_recv_mb": 171.75,
+      "network_packets_sent": 112279,
+      "network_packets_recv": 194776,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.14,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:17:14.971466",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:17:14.971466",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.86,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147502.13,
+      "disk_write_mb": 145837.83,
+      "network_sent_mb": 34.55,
+      "network_recv_mb": 171.83,
+      "network_packets_sent": 112498,
+      "network_packets_recv": 195197,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.15,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:17:52.941735",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:17:52.941735",
+      "is_sysmon_available": false,
+      "cpu_usage": 3.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.76,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147502.59,
+      "disk_write_mb": 145847.13,
+      "network_sent_mb": 34.58,
+      "network_recv_mb": 171.87,
+      "network_packets_sent": 112616,
+      "network_packets_recv": 195523,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.16,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:18:30.094578",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:18:30.094578",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 87.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.61,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147502.73,
+      "disk_write_mb": 145856.56,
+      "network_sent_mb": 34.63,
+      "network_recv_mb": 171.91,
+      "network_packets_sent": 112759,
+      "network_packets_recv": 195857,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.17,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:19:07.049153",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:19:07.049153",
+      "is_sysmon_available": false,
+      "cpu_usage": 14.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.88,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.45,
+      "disk_read_mb": 147561.92,
+      "disk_write_mb": 145868.06,
+      "network_sent_mb": 34.81,
+      "network_recv_mb": 172.03,
+      "network_packets_sent": 113103,
+      "network_packets_recv": 196424,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.18,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.45,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:19:46.447821",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:19:46.447821",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.96,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147563.06,
+      "disk_write_mb": 145883.83,
+      "network_sent_mb": 35.05,
+      "network_recv_mb": 173.05,
+      "network_packets_sent": 113731,
+      "network_packets_recv": 197867,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.2,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:20:23.951792",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:20:23.951792",
+      "is_sysmon_available": false,
+      "cpu_usage": 36.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.16,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.46,
+      "disk_read_mb": 147583.68,
+      "disk_write_mb": 145906.27,
+      "network_sent_mb": 35.38,
+      "network_recv_mb": 176.72,
+      "network_packets_sent": 115694,
+      "network_packets_recv": 200635,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.21,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.46,
+          "free_gb": 174.48,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:21:01.797846",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:21:01.797846",
+      "is_sysmon_available": false,
+      "cpu_usage": 20.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 94.3,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.74,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147617.42,
+      "disk_write_mb": 145952.65,
+      "network_sent_mb": 36.77,
+      "network_recv_mb": 187.77,
+      "network_packets_sent": 121250,
+      "network_packets_recv": 207513,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.22,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:21:40.981523",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:21:40.981523",
+      "is_sysmon_available": false,
+      "cpu_usage": 28.8,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.16,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147657.74,
+      "disk_write_mb": 145968.58,
+      "network_sent_mb": 36.9,
+      "network_recv_mb": 187.95,
+      "network_packets_sent": 121717,
+      "network_packets_recv": 208238,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.23,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:22:15.251534",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:22:15.251534",
+      "is_sysmon_available": false,
+      "cpu_usage": 2.5,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.1,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147669.08,
+      "disk_write_mb": 145980.42,
+      "network_sent_mb": 36.96,
+      "network_recv_mb": 188.01,
+      "network_packets_sent": 121888,
+      "network_packets_recv": 208621,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.24,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:22:49.529631",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:22:49.529631",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.03,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147690.2,
+      "disk_write_mb": 145983.94,
+      "network_sent_mb": 36.99,
+      "network_recv_mb": 188.06,
+      "network_packets_sent": 122028,
+      "network_packets_recv": 208978,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.25,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:23:23.618719",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:23:23.618719",
+      "is_sysmon_available": false,
+      "cpu_usage": 24.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.87,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147706.63,
+      "disk_write_mb": 145991.89,
+      "network_sent_mb": 37.02,
+      "network_recv_mb": 188.1,
+      "network_packets_sent": 122141,
+      "network_packets_recv": 209304,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.26,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:23:59.298210",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:23:59.298210",
+      "is_sysmon_available": false,
+      "cpu_usage": 7.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.92,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147731.29,
+      "disk_write_mb": 146052.04,
+      "network_sent_mb": 37.12,
+      "network_recv_mb": 188.25,
+      "network_packets_sent": 122551,
+      "network_packets_recv": 209917,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.27,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:24:34.187820",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:24:34.187820",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.32,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147740.37,
+      "disk_write_mb": 146058.29,
+      "network_sent_mb": 37.21,
+      "network_recv_mb": 188.36,
+      "network_packets_sent": 122820,
+      "network_packets_recv": 210406,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.28,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:25:12.039921",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:25:12.039921",
+      "is_sysmon_available": false,
+      "cpu_usage": 22.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.7,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.18,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147743.08,
+      "disk_write_mb": 146076.92,
+      "network_sent_mb": 37.46,
+      "network_recv_mb": 188.52,
+      "network_packets_sent": 123276,
+      "network_packets_recv": 211114,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.29,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:25:46.128545",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:25:46.128545",
+      "is_sysmon_available": false,
+      "cpu_usage": 34.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.83,
+      "swap_usage": 14.1,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147745.19,
+      "disk_write_mb": 146080.86,
+      "network_sent_mb": 37.5,
+      "network_recv_mb": 188.56,
+      "network_packets_sent": 123386,
+      "network_packets_recv": 211446,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:26:20.119549",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:26:20.119549",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.8,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.04,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147761.32,
+      "disk_write_mb": 146099.33,
+      "network_sent_mb": 37.57,
+      "network_recv_mb": 188.76,
+      "network_packets_sent": 123680,
+      "network_packets_recv": 212049,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.3,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:26:54.238473",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:26:54.238473",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.99,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147762.94,
+      "disk_write_mb": 146141.75,
+      "network_sent_mb": 37.7,
+      "network_recv_mb": 188.85,
+      "network_packets_sent": 123981,
+      "network_packets_recv": 212574,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.31,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:27:30.778807",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:27:30.778807",
+      "is_sysmon_available": false,
+      "cpu_usage": 8.3,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.94,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147763.96,
+      "disk_write_mb": 146152.44,
+      "network_sent_mb": 37.91,
+      "network_recv_mb": 188.97,
+      "network_packets_sent": 124396,
+      "network_packets_recv": 213254,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.32,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:28:04.809525",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:28:04.809525",
+      "is_sysmon_available": false,
+      "cpu_usage": 10.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.2,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.1,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147766.17,
+      "disk_write_mb": 146200.96,
+      "network_sent_mb": 38.03,
+      "network_recv_mb": 189.12,
+      "network_packets_sent": 124736,
+      "network_packets_recv": 213850,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.33,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:28:42.057675",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:28:42.057675",
+      "is_sysmon_available": false,
+      "cpu_usage": 13.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.9,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.9,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.48,
+      "disk_read_mb": 147821.42,
+      "disk_write_mb": 146284.46,
+      "network_sent_mb": 38.08,
+      "network_recv_mb": 189.17,
+      "network_packets_sent": 124883,
+      "network_packets_recv": 214223,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.34,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.48,
+          "free_gb": 174.46,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:29:19.739750",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:29:19.739750",
+      "is_sysmon_available": false,
+      "cpu_usage": 12.4,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.3,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.49,
+      "disk_read_mb": 147979.57,
+      "disk_write_mb": 146314.71,
+      "network_sent_mb": 38.17,
+      "network_recv_mb": 189.64,
+      "network_packets_sent": 125265,
+      "network_packets_recv": 214975,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.35,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.49,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:29:56.176411",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:29:56.176411",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 90.4,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.14,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.49,
+      "disk_read_mb": 147997.27,
+      "disk_write_mb": 146338.74,
+      "network_sent_mb": 38.22,
+      "network_recv_mb": 189.7,
+      "network_packets_sent": 125421,
+      "network_packets_recv": 215376,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.36,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.49,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:30:33.540787",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:30:33.540787",
+      "is_sysmon_available": false,
+      "cpu_usage": 21.9,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.99,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.5,
+      "disk_read_mb": 148002.59,
+      "disk_write_mb": 146400.62,
+      "network_sent_mb": 38.3,
+      "network_recv_mb": 190.14,
+      "network_packets_sent": 125767,
+      "network_packets_recv": 216012,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.5,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:31:08.292944",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:31:08.292944",
+      "is_sysmon_available": false,
+      "cpu_usage": 5.1,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.0,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.23,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.5,
+      "disk_read_mb": 148120.26,
+      "disk_write_mb": 146466.02,
+      "network_sent_mb": 38.39,
+      "network_recv_mb": 190.45,
+      "network_packets_sent": 126081,
+      "network_packets_recv": 216618,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.38,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.5,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:31:43.523361",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:31:43.523361",
+      "is_sysmon_available": false,
+      "cpu_usage": 15.2,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 91.1,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.24,
+      "swap_usage": 14.0,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.5,
+      "disk_read_mb": 148123.92,
+      "disk_write_mb": 146487.72,
+      "network_sent_mb": 38.62,
+      "network_recv_mb": 190.59,
+      "network_packets_sent": 126462,
+      "network_packets_recv": 217229,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.39,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.5,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:32:20.148239",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:32:20.148239",
+      "is_sysmon_available": false,
+      "cpu_usage": 30.4,
+      "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": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.5,
+      "disk_read_mb": 148128.98,
+      "disk_write_mb": 146500.61,
+      "network_sent_mb": 38.77,
+      "network_recv_mb": 190.71,
+      "network_packets_sent": 126812,
+      "network_packets_recv": 217849,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.4,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.5,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:32:54.565727",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:32:54.565727",
+      "is_sysmon_available": false,
+      "cpu_usage": 32.0,
+      "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": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.5,
+      "disk_read_mb": 148131.55,
+      "disk_write_mb": 146563.97,
+      "network_sent_mb": 38.93,
+      "network_recv_mb": 190.83,
+      "network_packets_sent": 127126,
+      "network_packets_recv": 218425,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.41,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.5,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:33:29.168938",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:33:29.168938",
+      "is_sysmon_available": false,
+      "cpu_usage": 4.0,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 88.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.84,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.5,
+      "disk_read_mb": 148132.46,
+      "disk_write_mb": 146624.8,
+      "network_sent_mb": 38.96,
+      "network_recv_mb": 190.88,
+      "network_packets_sent": 127230,
+      "network_packets_recv": 218835,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.42,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.5,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:34:06.224148",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:34:06.224148",
+      "is_sysmon_available": false,
+      "cpu_usage": 6.6,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.6,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 14.02,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.5,
+      "disk_read_mb": 148132.85,
+      "disk_write_mb": 146685.32,
+      "network_sent_mb": 39.07,
+      "network_recv_mb": 190.99,
+      "network_packets_sent": 127516,
+      "network_packets_recv": 219387,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.43,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.5,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  },
+  {
+    "timestamp": "2026-01-21T13:34:43.792908",
+    "info": {
+      "computer_name": "Ilina-laptop",
+      "user": "Ilina",
+      "ip_address": "192.168.11.207",
+      "os": "Windows 11 10.0.26200",
+      "architecture": "64bit",
+      "timestamp": "2026-01-21T13:34:43.792908",
+      "is_sysmon_available": false,
+      "cpu_usage": 11.7,
+      "cpu_cores": 12,
+      "cpu_freq_current": 1700.0,
+      "ram_usage": 89.5,
+      "ram_total_gb": 15.63,
+      "ram_used_gb": 13.98,
+      "swap_usage": 13.9,
+      "disk_usage": 63.3,
+      "disk_total_gb": 475.94,
+      "disk_used_gb": 301.5,
+      "disk_read_mb": 148133.06,
+      "disk_write_mb": 146700.5,
+      "network_sent_mb": 39.34,
+      "network_recv_mb": 191.09,
+      "network_packets_sent": 127888,
+      "network_packets_recv": 220019,
+      "boot_time": "2026-01-14 06:08:04",
+      "uptime_hours": 175.44,
+      "cpu_physical_cores": 10,
+      "cpu_logical_cores": 12,
+      "disks": [
+        {
+          "device": "C:\\",
+          "mountpoint": "C:\\",
+          "fstype": "NTFS",
+          "total_gb": 475.94,
+          "used_gb": 301.5,
+          "free_gb": 174.44,
+          "percent_used": 63.3
+        }
+      ],
+      "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.11.207",
+            "netmask": "255.255.240.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": 51
+  }
+]
Index: sctry.py
===================================================================
--- sctry.py	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ sctry.py	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,5 +1,6 @@
 #!/usr/bin/env python3
 """
-POPRAVEN CLIENT со фикс за Sysmon
+netIntel Client (Fixed + more reliable)
+- Sends payload to /receive with X-Env-Token header
 """
 
@@ -9,14 +10,43 @@
 import json
 import requests
-from datetime import datetime, timedelta
+from datetime import datetime
 import psutil
 import time
 import subprocess
-import re
-from collections import defaultdict
-
-
+import getpass
+
+
+# ----------------------------
+# Helpers
+# ----------------------------
+def safe_username():
+    try:
+        return os.getlogin()
+    except Exception:
+        return getpass.getuser()
+
+
+def get_local_ip_fallback():
+    """
+    More reliable local IP than socket.gethostbyname(hostname).
+    """
+    try:
+        s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
+        s.connect(("8.8.8.8", 80))
+        ip = s.getsockname()[0]
+        s.close()
+        return ip
+    except Exception:
+        try:
+            return socket.gethostbyname(socket.gethostname())
+        except Exception:
+            return "127.0.0.1"
+
+
+# ----------------------------
+# Sysmon-like collector (simulated)
+# ----------------------------
 class FixedSysmonCollector:
-    """Симплифициран колектор што работи без инсталиран Sysmon"""
+    """Simplified collector - works even without Sysmon installed"""
 
     def __init__(self):
@@ -24,24 +54,24 @@
 
     def collect_sysmon_events(self, limit=50):
-        """Симулирај Sysmon настани од процеси и мрежа"""
         events = []
-
-        try:
-            # 1. Процес настани (Event ID 1 = Process Creation)
+        now = datetime.now()
+
+        try:
+            # 1) Process events (Event ID 1)
             for proc in psutil.process_iter(['pid', 'name', 'create_time', 'username']):
                 try:
                     pinfo = proc.info
-                    if pinfo['create_time']:
-                        create_time = datetime.fromtimestamp(pinfo['create_time'])
-                        # Додади само процеси креирани во последните 5 минути
-                        if not self.last_collection or create_time > self.last_collection:
+                    ct = pinfo.get('create_time')
+                    if ct:
+                        create_time = datetime.fromtimestamp(ct)
+                        if (not self.last_collection) or (create_time > self.last_collection):
                             events.append({
                                 "event_id": 1,
                                 "event_type": "Process Creation",
-                                "message": f"Process created: {pinfo['name']} (PID: {pinfo['pid']}, User: {pinfo['username']})",
+                                "message": f"Process created: {pinfo.get('name')} (PID: {pinfo.get('pid')}, User: {pinfo.get('username')})",
                                 "timestamp": create_time.isoformat(),
-                                "process_name": pinfo['name'],
-                                "pid": pinfo['pid'],
-                                "user": pinfo['username']
+                                "process_name": pinfo.get('name'),
+                                "pid": pinfo.get('pid'),
+                                "user": pinfo.get('username'),
                             })
                 except (psutil.NoSuchProcess, psutil.AccessDenied):
@@ -51,5 +81,5 @@
                     break
 
-            # 2. Мрежни конекции (Event ID 3 = Network Connection)
+            # 2) Network connections (Event ID 3)
             for conn in psutil.net_connections(kind='inet'):
                 try:
@@ -59,11 +89,13 @@
                             "event_id": 3,
                             "event_type": "Network Connection",
-                            "message": f"Network {conn.status}: {conn.laddr.ip if conn.laddr else 'N/A'}:{conn.laddr.port if conn.laddr else 'N/A'} -> {conn.raddr.ip}:{conn.raddr.port}",
-                            "timestamp": datetime.now().isoformat(),
+                            "message": f"Network {conn.status}: "
+                                       f"{conn.laddr.ip if conn.laddr else 'N/A'}:{conn.laddr.port if conn.laddr else 'N/A'} "
+                                       f"-> {conn.raddr.ip}:{conn.raddr.port}",
+                            "timestamp": now.isoformat(),
                             "local_address": f"{conn.laddr.ip}:{conn.laddr.port}" if conn.laddr else None,
                             "remote_address": f"{conn.raddr.ip}:{conn.raddr.port}",
                             "status": conn.status,
                             "pid": conn.pid,
-                            "process_name": proc.name() if proc else "Unknown"
+                            "process_name": proc.name() if proc else "Unknown",
                         })
                 except (psutil.NoSuchProcess, psutil.AccessDenied):
@@ -73,5 +105,5 @@
                     break
 
-            # 3. Системски перформанси настани
+            # 3) Performance alerts (optional)
             cpu = psutil.cpu_percent(interval=0.1)
             if cpu > 80:
@@ -80,5 +112,5 @@
                     "event_type": "High CPU Usage",
                     "message": f"High CPU usage detected: {cpu:.1f}%",
-                    "timestamp": datetime.now().isoformat(),
+                    "timestamp": now.isoformat(),
                     "cpu_percent": cpu
                 })
@@ -90,5 +122,5 @@
                     "event_type": "High Memory Usage",
                     "message": f"High RAM usage: {ram.percent:.1f}%",
-                    "timestamp": datetime.now().isoformat(),
+                    "timestamp": now.isoformat(),
                     "ram_percent": ram.percent
                 })
@@ -97,15 +129,15 @@
             print(f"FixedSysmon error: {e}")
 
-        self.last_collection = datetime.now()
+        self.last_collection = now
         return events
 
-    def collect_network_connections_detailed(self):
-        """Детални мрежни конекции"""
+    def collect_network_connections_detailed(self, limit=30):
         connections = []
+        now = datetime.now().isoformat()
+
         try:
             for conn in psutil.net_connections(kind='inet'):
                 try:
                     proc = psutil.Process(conn.pid) if conn.pid else None
-
                     conn_info = {
                         "pid": conn.pid,
@@ -113,5 +145,5 @@
                         "family": str(conn.family),
                         "type": str(conn.type),
-                        "timestamp": datetime.now().isoformat()
+                        "timestamp": now
                     }
 
@@ -127,9 +159,14 @@
 
                     if proc:
-                        conn_info.update({
-                            "process_name": proc.name(),
-                            "process_cmdline": ' '.join(proc.cmdline()) if proc.cmdline() else None,
-                            "process_username": proc.username() if hasattr(proc, 'username') else None
-                        })
+                        conn_info["process_name"] = proc.name()
+                        try:
+                            cmd = proc.cmdline()
+                            conn_info["process_cmdline"] = " ".join(cmd) if cmd else None
+                        except Exception:
+                            conn_info["process_cmdline"] = None
+                        try:
+                            conn_info["process_username"] = proc.username()
+                        except Exception:
+                            conn_info["process_username"] = None
 
                     connections.append(conn_info)
@@ -138,5 +175,5 @@
                     continue
 
-                if len(connections) >= 30:
+                if len(connections) >= limit:
                     break
 
@@ -147,13 +184,15 @@
 
     def collect_all_security_data(self):
-        """Собери сите безбедносни податоци (очекуваниот метод!)"""
         return {
             "sysmon_events": self.collect_sysmon_events(limit=50),
-            "network_connections": self.collect_network_connections_detailed(),
-            "file_changes": [],  # Празен лист, можеш да го имплементираш подоцна
+            "network_connections": self.collect_network_connections_detailed(limit=30),
+            "file_changes": [],
             "collection_time": datetime.now().isoformat()
         }
 
 
+# ----------------------------
+# Client
+# ----------------------------
 class EnhancedFixedClient:
     def __init__(self, server_ip="192.168.1.13", port=5555, env_token=None):
@@ -161,28 +200,15 @@
         self.port = port
         self.computer_name = socket.gethostname()
-        self.user = os.getlogin()
+        self.user = safe_username()
         self.sysmon_collector = FixedSysmonCollector()
         self.env_token = env_token
-        # Користи поправената верзија
-
-    def get_detailed_info(self):
-        """Собирај подробни податоци"""
-        info = {
-            "computer_name": self.computer_name,
-            "user": self.user,
-            "ip_address": socket.gethostbyname(self.computer_name),
-            "os": f"{platform.system()} {platform.release()} {platform.version()}",
-            "architecture": platform.architecture()[0],
-            "timestamp": datetime.now().strftime("%Y-%m-%d %H:%M:%S"),
-            "is_sysmon_available": self._check_sysmon_installed()
-        }
-
-        info.update(self.get_performance_metrics())
-        info.update(self.get_hardware_info())
-
-        return info
+
+        # warmup cpu_percent so it doesn't start at 0
+        try:
+            psutil.cpu_percent(interval=None)
+        except Exception:
+            pass
 
     def _check_sysmon_installed(self):
-        """Провери дали Sysmon е инсталиран"""
         try:
             if platform.system() == "Windows":
@@ -192,20 +218,16 @@
                 )
                 return result.returncode == 0
-        except:
+        except Exception:
             pass
         return False
 
     def get_performance_metrics(self):
-        """Метрики за перформанси - ПОПРАВЕНО БЕЗ DEPRECATION WARNING"""
-        try:
-            cpu_percent = psutil.cpu_percent(interval=1)
+        try:
+            cpu_percent = psutil.cpu_percent(interval=0.5)
             cpu_freq = psutil.cpu_freq()
-
             ram = psutil.virtual_memory()
             swap = psutil.swap_memory()
-
             disk = psutil.disk_usage("C:/" if platform.system() == "Windows" else "/")
 
-            # ДОБАВИ TRY-EXCEPT за disk_io_counters
             disk_read_mb = 0
             disk_write_mb = 0
@@ -215,8 +237,11 @@
                     disk_read_mb = round(disk_io.read_bytes / (1024 ** 2), 2)
                     disk_write_mb = round(disk_io.write_bytes / (1024 ** 2), 2)
-            except:
+            except Exception:
                 pass
 
             net_io = psutil.net_io_counters()
+
+            boot_dt = datetime.fromtimestamp(psutil.boot_time())
+            uptime_hours = round((datetime.now() - boot_dt).total_seconds() / 3600, 2)
 
             return {
@@ -237,6 +262,6 @@
                 "network_packets_sent": net_io.packets_sent,
                 "network_packets_recv": net_io.packets_recv,
-                "boot_time": datetime.fromtimestamp(psutil.boot_time()).strftime("%Y-%m-%d %H:%M:%S"),
-                "uptime_hours": round((datetime.now() - datetime.fromtimestamp(psutil.boot_time())).seconds / 3600, 2)
+                "boot_time": boot_dt.strftime("%Y-%m-%d %H:%M:%S"),
+                "uptime_hours": uptime_hours
             }
         except Exception as e:
@@ -245,5 +270,4 @@
 
     def get_hardware_info(self):
-        """Хардвер информации"""
         try:
             partitions = []
@@ -260,8 +284,7 @@
                         "percent_used": usage.percent
                     })
-                except:
-                    continue
-
-            # Мрежни интерфејси
+                except Exception:
+                    continue
+
             net_if_addrs = psutil.net_if_addrs()
             interfaces = {}
@@ -271,8 +294,15 @@
                         "family": str(addr.family),
                         "address": addr.address,
-                        "netmask": addr.netmask if hasattr(addr, 'netmask') else None
+                        "netmask": getattr(addr, "netmask", None)
                     }
-                    for addr in addrs if addr.address
+                    for addr in addrs if getattr(addr, "address", None)
                 ]
+
+            batt = None
+            try:
+                b = psutil.sensors_battery()
+                batt = b.percent if b else None
+            except Exception:
+                batt = None
 
             return {
@@ -281,6 +311,5 @@
                 "disks": partitions,
                 "network_interfaces": interfaces,
-                "battery_percent": psutil.sensors_battery().percent if hasattr(psutil.sensors_battery(),
-                                                                               'percent') else None,
+                "battery_percent": batt,
                 "temperatures": self._get_temperatures()
             }
@@ -290,8 +319,7 @@
 
     def _get_temperatures(self):
-        """Добиј температури на системот"""
         try:
             temps = {}
-            if hasattr(psutil, 'sensors_temperatures'):
+            if hasattr(psutil, "sensors_temperatures"):
                 sensors = psutil.sensors_temperatures()
                 for name, entries in sensors.items():
@@ -299,38 +327,36 @@
                         temps[name] = entries[0].current
             return temps
-        except:
+        except Exception:
             return {}
 
-    def get_detailed_processes(self):
-        """Детални информации за процесите - ПОПРАВЕНО БЕЗ DEPRECATION WARNING"""
+    def get_detailed_processes(self, limit=100):
         processes = []
         try:
-            for proc in psutil.process_iter(['pid', 'name', 'username', 'cpu_percent',
-                                             'memory_percent', 'create_time', 'status']):
+            for proc in psutil.process_iter(['pid', 'name', 'username', 'cpu_percent', 'memory_percent',
+                                             'create_time', 'status']):
                 try:
                     pinfo = proc.info
-
-                    # КОРИСТИ psutil.Process() за да добиеш дополнителни информации
                     with proc.oneshot():
                         processes.append({
-                            "pid": pinfo['pid'],
-                            "name": pinfo['name'],
-                            "user": pinfo['username'],
-                            "cpu_percent": pinfo['cpu_percent'],
+                            "pid": pinfo.get("pid"),
+                            "name": pinfo.get("name"),
+                            "user": pinfo.get("username"),
+                            "cpu_percent": pinfo.get("cpu_percent"),
                             "memory_mb": round(proc.memory_info().rss / (1024 ** 2), 2),
-                            "memory_percent": pinfo['memory_percent'],
-                            "create_time": datetime.fromtimestamp(pinfo['create_time']).strftime("%Y-%m-%d %H:%M:%S") if
-                            pinfo['create_time'] else None,
-                            "status": pinfo['status'],
-                            "exe": proc.exe() if hasattr(proc, 'exe') else None,
-                            "cmdline": ' '.join(proc.cmdline()) if hasattr(proc, 'cmdline') else None,
-                            "num_threads": proc.num_threads() if hasattr(proc, 'num_threads') else None,
-                            # НЕ КОРИСТИ proc.connections() - тоа е deprecated!
-                            "connections_count": 0  # Стави 0 или избриши го ова поле
+                            "memory_percent": pinfo.get("memory_percent"),
+                            "create_time": datetime.fromtimestamp(pinfo["create_time"]).strftime("%Y-%m-%d %H:%M:%S")
+                            if pinfo.get("create_time") else None,
+                            "status": pinfo.get("status"),
+                            "exe": proc.exe() if hasattr(proc, "exe") else None,
+                            "cmdline": " ".join(proc.cmdline()) if hasattr(proc, "cmdline") else None,
+                            "num_threads": proc.num_threads() if hasattr(proc, "num_threads") else None,
+                            "connections_count": 0
                         })
                 except (psutil.NoSuchProcess, psutil.AccessDenied):
                     continue
-
-                if len(processes) >= 100:
+                except Exception:
+                    continue
+
+                if len(processes) >= limit:
                     break
 
@@ -340,137 +366,129 @@
         return processes
 
+    def get_detailed_info(self):
+        info = {
+            "computer_name": self.computer_name,
+            "user": self.user,
+            "ip_address": get_local_ip_fallback(),
+            "os": f"{platform.system()} {platform.release()} {platform.version()}",
+            "architecture": platform.architecture()[0],
+            "timestamp": datetime.now().isoformat(),
+            "is_sysmon_available": self._check_sysmon_installed()
+        }
+        info.update(self.get_performance_metrics())
+        info.update(self.get_hardware_info())
+        return info
+
     def collect_and_send(self):
-        """Собери и испрати сите податоци"""
-        print(f"\n[{datetime.now().strftime('%H:%M:%S')}] 🔍 Собирање податоци...")
-
-        # Собери сите податоци
+        print(f"\n[{datetime.now().strftime('%H:%M:%S')}] 🔍 Collecting...")
+
         data = {
             "info": self.get_detailed_info(),
-            "processes": self.get_detailed_processes(),
-            "security_data": self.sysmon_collector.collect_all_security_data(),  # ОВА СЕГА РАБОТИ!
+            "processes": self.get_detailed_processes(limit=100),
+            "security_data": self.sysmon_collector.collect_all_security_data(),
             "collection_time": datetime.now().isoformat(),
-            "client_version": "2.1_fixed"
+            "client_version": "2.2_fixed"
         }
 
-        # Прикажи основни информации
         info = data["info"]
-        sec_data = data["security_data"]
-
-        print(f"   💻 Компјутер: {info['computer_name']}")
-        print(f"   👤 Корисник: {info['user']}")
-        print(
-            f"   📊 CPU: {info.get('cpu_usage', 0)}% | RAM: {info.get('ram_usage', 0)}% | Disk: {info.get('disk_usage', 0)}%")
-        print(f"   🔄 Процеси: {len(data['processes'])}")
-        print(f"   🛡️  Sysmon настани: {len(sec_data.get('sysmon_events', []))}")
-        print(f"   🌐 Мрежни конекции: {len(sec_data.get('network_connections', []))}")
-
-        # Испрати ги податоците
-        try:
-            headers = {"X-Env-Token": self.env_token} if self.env_token else {}
-
-            response = requests.post(
-                f"http://{self.server_ip}:{self.port}/receive",
-                json=data,
-                headers=headers,
-                timeout=30
-            )
-
-            if response.status_code == 200:
-                result = response.json()
-                print(f"   ✅ Податоците се успешно испратени!")
-                if 'event_count' in result:
-                    print(f"   📝 Зачувани {result['event_count']} Sysmon настани")
+        sec = data["security_data"]
+
+        print(f"   💻 {info.get('computer_name')} | 👤 {info.get('user')}")
+        print(f"   📊 CPU {info.get('cpu_usage', 0)}% | RAM {info.get('ram_usage', 0)}% | Disk {info.get('disk_usage', 0)}%")
+        print(f"   🔄 Processes: {len(data['processes'])}")
+        print(f"   🛡️ Sysmon events: {len(sec.get('sysmon_events', []))}")
+        print(f"   🌐 Net conns: {len(sec.get('network_connections', []))}")
+
+        try:
+            headers = {}
+            if self.env_token:
+                headers["X-Env-Token"] = self.env_token
+            headers["X-Client-Id"] = self.computer_name  # optional
+
+            url = f"http://{self.server_ip}:{self.port}/receive"
+            r = requests.post(url, json=data, headers=headers, timeout=30)
+
+            if r.ok:
+                resp = r.json()
+                print("   ✅ Sent OK")
+                if "sysmon_events_saved" in resp:
+                    print(f"   📝 Saved sysmon: {resp['sysmon_events_saved']}")
                 return True
+
+            # errors
+            if r.status_code == 401:
+                try:
+                    msg = r.json()
+                except Exception:
+                    msg = {"error": r.text[:200]}
+                print("   🔒 Token invalid/expired. Generate new token in Admin panel.")
+                print(f"   Server says: {msg}")
             else:
-                if response.status_code == 401:
-                    try:
-                        msg = response.json()
-                    except:
-                        msg = {}
-                    print("   🔒 Token invalid/expired. Побарај нов token од Admin панел.")
-                    print(f"   Server says: {msg}")
-                else:
-                    print(f"   ❌ Грешка: {response.status_code}")
-                    try:
-                        print("   ", response.text[:300])
-                    except:
-                        pass
-                return False
-
-        except Exception as e:
-            print(f"   ❌ Проблем со серверот: {e}")
+                print(f"   ❌ HTTP {r.status_code}: {r.text[:300]}")
             return False
 
+        except Exception as e:
+            print(f"   ❌ Connection problem: {e}")
+            return False
+
 
 def main():
-    """Главна програма"""
     print("=" * 70)
-    print("🖥️  FIXED LAN LOG COLLECTOR v2.1")
+    print("🖥️  netIntel Collector (Fixed)")
     print("=" * 70)
-    print(f"Компјутер: {socket.gethostname()}")
-    print(f"Корисник: {os.getlogin()}")
-    print(f"IP: {socket.gethostbyname(socket.gethostname())}")
+    print(f"Computer: {socket.gethostname()}")
+    print(f"User: {safe_username()}")
+    print(f"Local IP: {get_local_ip_fallback()}")
     print("=" * 70)
-    print("Податоците ќе се собираат и испраќаат на секои 30 секунди.")
-    print("Притисни Ctrl+C за да го прекинеш.")
+    print("Will send every 30 seconds. Ctrl+C to stop.")
     print("=" * 70)
 
-    # Провери дали серверот е достапен
-    server_ip = input("Внеси сервер IP (default 192.168.1.13): ").strip() or "192.168.1.13"
-
-    env_token = input("Внеси ENV TOKEN (од Admin панел): ").strip()
+    server_ip = input("Server IP (default 192.168.1.13): ").strip() or "192.168.1.13"
+    env_token = input("ENV TOKEN (from Admin panel): ").strip()
     if not env_token:
-        print("❌ Мора ENV TOKEN за да се регистрира уредот.")
+        print("❌ ENV TOKEN is required.")
         return
 
     client = EnhancedFixedClient(server_ip, 5555, env_token=env_token)
-    # Тест конекција
-    print(f"\n🔌 Тестирање на врска со серверот {server_ip}...")
+
+    print(f"\n🔌 Testing server {server_ip}...")
     try:
-        response = requests.get(f"http://{server_ip}:5555/ping", timeout=5)
-        if response.status_code == 200:
-            print("   ✅ Серверот е достапен!")
+        r = requests.get(f"http://{server_ip}:5555/ping", timeout=5)
+        if r.ok:
+            print("   ✅ Server reachable")
         else:
-            print(f"   ⚠️  Серверот одговори со: {response.status_code}")
-            confirm = input("   Сакаш ли да продолжиш? (y/n): ").lower()
-            if confirm != 'y':
-                return
+            print(f"   ⚠️ Server responded: {r.status_code}")
     except Exception as e:
-        print(f"   ❌ Не можам да се поврзам со серверот {server_ip}: {e}")
-        confirm = input("   Сакаш ли да продолжиш? (y/n): ").lower()
-        if confirm != 'y':
-            return
+        print(f"   ❌ Can't reach server: {e}")
+        return
 
     try:
         count = 1
         while True:
-            print(f"\n📤 Трансмисија #{count}")
-
-            success = client.collect_and_send()
-
+            print(f"\n📤 Transmission #{count}")
+            client.collect_and_send()
             count += 1
-            print(f"\n⏳ Чекам 30 секунди до следната трансмисија...")
-
-            # Countdown
+
+            print("\n⏳ Waiting 30s...")
             for i in range(30, 0, -1):
                 if i % 10 == 0 or i <= 5:
-                    print(f"\r   {i} секунди остануваат...", end="")
+                    print(f"\r   {i} seconds remaining...", end="")
                 time.sleep(1)
             print("\r" + " " * 40 + "\r", end="")
 
     except KeyboardInterrupt:
-        print("\n\n🛑 Програмата е зајчана.")
-        print(f"📊 Dashboard: http://{server_ip}:5555/")
+        print("\n\n🛑 Stopped.")
+        print(f"📊 Dashboard/API: http://{server_ip}:5555/")
 
 
 if __name__ == "__main__":
     try:
-        import psutil
-        import requests
+        import psutil  # noqa
+        import requests  # noqa
     except ImportError:
-        print("Инсталирај ги модулите:")
+        print("Install modules:")
         print("pip install psutil requests")
-        input("Притисни ENTER за излез...")
-        exit(1)
+        input("Press ENTER to exit...")
+        raise SystemExit(1)
 
     main()
Index: server.py
===================================================================
--- server.py	(revision 2058e5c694bb6097866a5fe6503c519e8f74970f)
+++ server.py	(revision 505f39ae7b51fc1db15123d66bf06aec0dca2f62)
@@ -1,1999 +1,538 @@
 #!/usr/bin/env python3
 """
-POPRAVEN SERVER со Sysmon обработка
+netIntel Flask Server (multi-tenant + Google login + JWT cookie session + env tokens)
+
+Auth:
+- POST /api/auth/google  -> sets HttpOnly cookie "session"
+- GET  /api/me           -> returns current user claims
+- POST /api/auth/logout  -> clears cookie
+
+Tenant admin (JWT cookie; admin role):
+- GET/POST /api/admin/environments
+- POST     /api/admin/tokens
+
+Agent (X-Env-Token):
+- POST /receive
+
+Tenant-scoped dashboard (JWT cookie):
+- GET  /api/stats
+- GET  /api/computers
+- GET  /api/computer/<name>
+- GET  /api/export/<name>
+- POST /api/chat
 """
+
+import os
+import json
+import time
+import sqlite3
 import traceback
-
-from flask import Flask, request, jsonify, render_template_string
-import json
-import sqlite3
+import threading
+import secrets
 from datetime import datetime, timedelta
-import time
-import os
-import socket
-from collections import defaultdict
-import threading
-import requests
-from openai import OpenAI
-from openai import OpenAI
+from functools import wraps
+
+from flask import Flask, request, jsonify, Response
 from dotenv import load_dotenv
+
+import jwt
+from google.oauth2 import id_token
+from google.auth.transport import requests as grequests
+
+# Optional OpenAI
+try:
+    from openai import OpenAI
+except Exception:
+    OpenAI = None
+
+from flask_cors import CORS
+
 load_dotenv()
 
-OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY")
-client = OpenAI(
-    api_key=OPENAI_API_KEY,
-    timeout=15  # максимум 15 секунди да чека
-) if OPENAI_API_KEY else None
-
-
+# ----------------------------
+# Config
+# ----------------------------
+DB_FILE = os.environ.get("DB_FILE", "lan_logs_sysmon.db")
+LOG_DIR = os.environ.get("LOG_DIR", "received_data_sysmon")
+
+OPENAI_API_KEY = os.environ.get("OPENAI_API_KEY", "")
+GOOGLE_CLIENT_ID = os.environ.get("GOOGLE_CLIENT_ID", "")
+JWT_SECRET = os.environ.get("JWT_SECRET", "dev-change-me")
+JWT_ISSUER = os.environ.get("JWT_ISSUER", "netintel")
+COOKIE_SECURE = os.environ.get("COOKIE_SECURE", "0") == "1"  # set 1 only on HTTPS
+
+# CORS origins (add your LAN origins if needed)
+EXTRA_ORIGINS = [o.strip() for o in os.environ.get("CORS_ORIGINS", "").split(",") if o.strip()]
+DEFAULT_ORIGINS = [
+    "http://localhost:5173",
+    "http://127.0.0.1:5173",
+]
+ALLOWED_ORIGINS = list(dict.fromkeys(DEFAULT_ORIGINS + EXTRA_ORIGINS))
+
+client = OpenAI(api_key=OPENAI_API_KEY, timeout=15) if (OPENAI_API_KEY and OpenAI) else None
+
+# ----------------------------
+# App
+# ----------------------------
 app = Flask(__name__)
-
-DB_FILE = "lan_logs_sysmon.db"
-LOG_DIR = "received_data_sysmon"
-
-import secrets
-
-ADMIN_KEY = os.environ.get("ADMIN_KEY", "")
-ADMIN_KEY = os.environ.get("ADMIN_KEY", "")
-
-
-def init_admin_tables():
+os.makedirs(LOG_DIR, exist_ok=True)
+
+CORS(
+    app,
+    supports_credentials=True,
+    origins=ALLOWED_ORIGINS,
+    allow_headers=[
+        "Content-Type",
+        "X-Admin-Session",
+        "X-Env",
+        "X-Env-Token",
+    ],
+    methods=["GET", "POST", "OPTIONS"],
+)
+
+
+# ----------------------------
+# DB helpers
+# ----------------------------
+def db():
     conn = sqlite3.connect(DB_FILE)
+    conn.row_factory = sqlite3.Row
+    return conn
+
+
+def init_db():
+    """Create tables if missing + light migrations."""
+    conn = db()
     c = conn.cursor()
 
-    c.execute('''CREATE TABLE IF NOT EXISTS environments(
-        id INTEGER PRIMARY KEY AUTOINCREMENT,
-        name TEXT UNIQUE,
-        created_at TEXT
-    )''')
-
-    c.execute('''CREATE TABLE IF NOT EXISTS env_tokens(
-        id INTEGER PRIMARY KEY AUTOINCREMENT,
-        env_name TEXT,
-        token TEXT UNIQUE,
-        created_at TEXT,
-        expires_at TEXT
-    )''')
-
-    # migration ако табелата веќе постои
-    c.execute("PRAGMA table_info(env_tokens)")
-    cols = [r[1] for r in c.fetchall()]
-    if "expires_at" not in cols:
-        c.execute("ALTER TABLE env_tokens ADD COLUMN expires_at TEXT")
-
-    c.execute('''CREATE TABLE IF NOT EXISTS admin_sessions(
-        id INTEGER PRIMARY KEY AUTOINCREMENT,
-        token TEXT UNIQUE,
-        created_at TEXT
-    )''')
-
-    # default env
-    c.execute("INSERT OR IGNORE INTO environments(name, created_at) VALUES('default', datetime('now'))")
+    c.execute("PRAGMA foreign_keys = ON;")
+
+    # Tenants / users / memberships
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS tenants(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            name TEXT NOT NULL,
+            owner_email TEXT NOT NULL,
+            created_at TEXT
+        )
+        """)
+
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS users(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            email TEXT UNIQUE NOT NULL,
+            name TEXT,
+            picture TEXT,
+            created_at TEXT
+        )
+        """)
+
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS memberships(
+            user_id INTEGER NOT NULL,
+            tenant_id INTEGER NOT NULL,
+            role TEXT DEFAULT 'admin',
+            created_at TEXT,
+            PRIMARY KEY(user_id, tenant_id),
+            FOREIGN KEY(user_id) REFERENCES users(id),
+            FOREIGN KEY(tenant_id) REFERENCES tenants(id)
+        )
+        """)
+
+    # Environments (unique per tenant)
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS environments(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            tenant_id INTEGER NOT NULL,
+            name TEXT NOT NULL,
+            created_at TEXT,
+            UNIQUE(tenant_id, name),
+            FOREIGN KEY(tenant_id) REFERENCES tenants(id)
+        )
+        """)
+
+    # Env tokens (agent tokens)
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS env_tokens(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            tenant_id INTEGER NOT NULL,
+            env_name TEXT NOT NULL,
+            token TEXT UNIQUE NOT NULL,
+            created_at TEXT,
+            expires_at TEXT,
+            FOREIGN KEY(tenant_id) REFERENCES tenants(id)
+        )
+        """)
+
+    # Computers
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS computers(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            tenant_id INTEGER NOT NULL,
+            env_name TEXT DEFAULT 'default',
+            name TEXT NOT NULL,
+            user TEXT,
+            ip TEXT,
+            os TEXT,
+            first_seen TEXT,
+            last_seen TEXT,
+            sysmon_available INTEGER DEFAULT 0,
+            UNIQUE(tenant_id, name)
+        )
+        """)
+
+    # History
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS computer_history(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            computer_id INTEGER,
+            cpu_usage REAL,
+            ram_usage REAL,
+            disk_usage REAL,
+            network_sent_mb REAL,
+            network_recv_mb REAL,
+            timestamp TEXT,
+            FOREIGN KEY(computer_id) REFERENCES computers(id)
+        )
+        """)
+
+    # Processes
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS computer_processes(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            computer_id INTEGER,
+            pid INTEGER,
+            name TEXT,
+            cpu_percent REAL,
+            memory_mb REAL,
+            username TEXT,
+            cmdline TEXT,
+            timestamp TEXT,
+            FOREIGN KEY(computer_id) REFERENCES computers(id)
+        )
+        """)
+
+    # Sysmon events
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS sysmon_events(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            computer_id INTEGER,
+            event_id INTEGER,
+            event_type TEXT,
+            message TEXT,
+            timestamp TEXT,
+            details TEXT,
+            FOREIGN KEY(computer_id) REFERENCES computers(id)
+        )
+        """)
+
+    # Network connections
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS network_connections(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            computer_id INTEGER,
+            pid INTEGER,
+            local_address TEXT,
+            remote_address TEXT,
+            status TEXT,
+            process_name TEXT,
+            timestamp TEXT,
+            FOREIGN KEY(computer_id) REFERENCES computers(id)
+        )
+        """)
+
+    # Security alerts
+    c.execute("""
+        CREATE TABLE IF NOT EXISTS security_alerts(
+            id INTEGER PRIMARY KEY AUTOINCREMENT,
+            computer_id INTEGER,
+            alert_type TEXT,
+            severity TEXT,
+            description TEXT,
+            timestamp TEXT,
+            resolved INTEGER DEFAULT 0,
+            FOREIGN KEY(computer_id) REFERENCES computers(id)
+        )
+        """)
 
     conn.commit()
     conn.close()
-
-def require_admin_session():
-    tok = request.headers.get("X-Admin-Session", "")
-    if not tok:
-        return False
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-    c.execute("SELECT 1 FROM admin_sessions WHERE token = ?", (tok,))
-    ok = c.fetchone() is not None
-    conn.close()
-    return ok
-
+    print(f"✅ DB ready: {DB_FILE}")
+
+
+# ----------------------------
+# JWT helpers
+# ----------------------------
+def make_jwt(payload: dict, minutes=60 * 24):
+    exp = datetime.utcnow() + timedelta(minutes=minutes)
+    data = {**payload, "iss": JWT_ISSUER, "exp": exp}
+    return jwt.encode(data, JWT_SECRET, algorithm="HS256")
+
+
+def read_jwt(token: str):
+    return jwt.decode(token, JWT_SECRET, algorithms=["HS256"], issuer=JWT_ISSUER)
+
+
+def require_user():
+    def deco(fn):
+        @wraps(fn)
+        def wrap(*args, **kwargs):
+            tok = request.cookies.get("session") or ""
+            if not tok:
+                return jsonify({"error": "Unauthorized"}), 401
+            try:
+                claims = read_jwt(tok)
+            except Exception:
+                return jsonify({"error": "Unauthorized"}), 401
+            request.user = claims
+            return fn(*args, **kwargs)
+
+        return wrap
+
+    return deco
+
+
+def require_tenant_admin():
+    def deco(fn):
+        @wraps(fn)
+        def wrap(*args, **kwargs):
+            tok = request.cookies.get("session") or ""
+            if not tok:
+                return jsonify({"error": "Unauthorized"}), 401
+            try:
+                claims = read_jwt(tok)
+            except Exception:
+                return jsonify({"error": "Unauthorized"}), 401
+            if claims.get("role") != "admin":
+                return jsonify({"error": "Forbidden"}), 403
+            request.user = claims
+            return fn(*args, **kwargs)
+
+        return wrap
+
+    return deco
+
+
+# ----------------------------
+# Env-token helpers (agents)
+# ----------------------------
 def get_env_from_token(req):
     tok = req.headers.get("X-Env-Token", "")
     if not tok:
-        return None
-
-    conn = sqlite3.connect(DB_FILE)
+        return (None, None)
+
+    conn = db()
     c = conn.cursor()
     c.execute("""
-        SELECT env_name
-        FROM env_tokens
-        WHERE token = ?
-          AND (expires_at IS NULL OR expires_at > datetime('now'))
-    """, (tok,))
+            SELECT env_name, tenant_id
+            FROM env_tokens
+            WHERE token = ?
+              AND (expires_at IS NULL OR expires_at > datetime('now'))
+            LIMIT 1
+        """, (tok,))
     row = c.fetchone()
     conn.close()
-    return row[0] if row else None
-
-
-def init_database():
-    """Креирај подобрена база со Sysmon табели"""
-    os.makedirs(LOG_DIR, exist_ok=True)
-
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-
-    # Табела за компјутери
-    c.execute('''CREATE TABLE IF NOT EXISTS computers
-                 (id INTEGER PRIMARY KEY AUTOINCREMENT,
-                  name TEXT UNIQUE,
-                  user TEXT,
-                  ip TEXT,
-                  os TEXT,
-                  first_seen TIMESTAMP,
-                  last_seen TIMESTAMP,
-                  sysmon_available BOOLEAN DEFAULT 0)''')
-    # --- MIGRATION: add env_name column if missing ---
-    c.execute("PRAGMA table_info(computers)")
-    cols = [r[1] for r in c.fetchall()]
-    if "env_name" not in cols:
-        c.execute("ALTER TABLE computers ADD COLUMN env_name TEXT DEFAULT 'default'")
-    # --- END MIGRATION ---
-
-    # Табела за историја
-    c.execute('''CREATE TABLE IF NOT EXISTS computer_history
-                 (id INTEGER PRIMARY KEY AUTOINCREMENT,
-                  computer_id INTEGER,
-                  cpu_usage REAL,
-                  ram_usage REAL,
-                  disk_usage REAL,
-                  network_sent_mb REAL,
-                  network_recv_mb REAL,
-                  timestamp TIMESTAMP,
-                  FOREIGN KEY(computer_id) REFERENCES computers(id))''')
-
-    # Табела за процеси
-    c.execute('''CREATE TABLE IF NOT EXISTS computer_processes
-                 (id INTEGER PRIMARY KEY AUTOINCREMENT,
-                  computer_id INTEGER,
-                  pid INTEGER,
-                  name TEXT,
-                  cpu_percent REAL,
-                  memory_mb REAL,
-                  username TEXT,
-                  cmdline TEXT,
-                  timestamp TIMESTAMP,
-                  FOREIGN KEY(computer_id) REFERENCES computers(id))''')
-
-    # НОВА: Табела за Sysmon настани
-    c.execute('''CREATE TABLE IF NOT EXISTS sysmon_events
-                 (id INTEGER PRIMARY KEY AUTOINCREMENT,
-                  computer_id INTEGER,
-                  event_id INTEGER,
-                  event_type TEXT,
-                  message TEXT,
-                  timestamp TIMESTAMP,
-                  details TEXT,
-                  FOREIGN KEY(computer_id) REFERENCES computers(id))''')
-
-    # НОВА: Табела за детални мрежни конекции
-    c.execute('''CREATE TABLE IF NOT EXISTS network_connections
-                 (id INTEGER PRIMARY KEY AUTOINCREMENT,
-                  computer_id INTEGER,
-                  pid INTEGER,
-                  local_address TEXT,
-                  remote_address TEXT,
-                  status TEXT,
-                  process_name TEXT,
-                  timestamp TIMESTAMP,
-                  FOREIGN KEY(computer_id) REFERENCES computers(id))''')
-
-    # НОВА: Табела за безбедносни настани
-    c.execute('''CREATE TABLE IF NOT EXISTS security_alerts
-                 (id INTEGER PRIMARY KEY AUTOINCREMENT,
-                  computer_id INTEGER,
-                  alert_type TEXT,
-                  severity TEXT,
-                  description TEXT,
-                  timestamp TIMESTAMP,
-                  resolved BOOLEAN DEFAULT 0,
-                  FOREIGN KEY(computer_id) REFERENCES computers(id))''')
-
-    conn.commit()
-    conn.close()
-
-    print(f"✅ Database created: {DB_FILE}")
-
-
-@app.route('/receive', methods=['POST'])
-def receive_data():
+
+    if not row:
+        return (None, None)
+    return (row["env_name"], row["tenant_id"])
+
+
+# ----------------------------
+# Utility
+# ----------------------------
+def save_json_file(data):
+    info = data.get("info") or {}
+    computer_name = info.get("computer_name", "unknown")
+    date_str = datetime.now().strftime("%Y%m%d_%H")
+
+    computer_dir = os.path.join(LOG_DIR, computer_name)
+    os.makedirs(computer_dir, exist_ok=True)
+    filepath = os.path.join(computer_dir, f"{date_str}.json")
+
+    if os.path.exists(filepath):
+        try:
+            with open(filepath, "r", encoding="utf-8") as f:
+                existing_data = json.load(f)
+        except Exception:
+            existing_data = []
+    else:
+        existing_data = []
+
+    existing_data.append({
+        "timestamp": info.get("timestamp"),
+        "info": info,
+        "processes_count": len(data.get("processes", [])),
+        "sysmon_events_count": len((data.get("security_data") or {}).get("sysmon_events", [])),
+    })
+
+    with open(filepath, "w", encoding="utf-8") as f:
+        json.dump(existing_data, f, indent=2, ensure_ascii=False)
+
+
+def cleanup_old_data():
+    """Deletes old rows (30 days) every hour."""
+    while True:
+        time.sleep(3600)
+        try:
+            conn = db()
+            c = conn.cursor()
+            cutoff = (datetime.now() - timedelta(days=30)).isoformat()
+
+            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,))
+
+            conn.commit()
+            conn.close()
+            print(f"[Cleanup] Deleted entries older than {cutoff}")
+        except Exception as e:
+            print("[Cleanup] Error:", e)
+
+
+# ----------------------------
+# Auth endpoints
+# ----------------------------
+@app.route("/api/auth/google", methods=["POST"])
+def auth_google():
+    data = request.get_json(force=True, silent=True) or {}
+    credential = (data.get("credential") or "").strip()
+    if not credential:
+        return jsonify({"error": "Missing credential"}), 400
+    if not GOOGLE_CLIENT_ID:
+        return jsonify({"error": "Server missing GOOGLE_CLIENT_ID"}), 500
+
     try:
-        data = request.json
-
-        if not data:
-            return jsonify({"error": "No data"}), 400
-        env_name = get_env_from_token(request)
-        if not env_name:
-            return jsonify({"error": "Missing or invalid X-Env-Token"}), 401
-
-        info = data['info']
-        computer_name = info['computer_name']
-        timestamp = datetime.now()
-        security_data = data.get('security_data', {})
-
-        conn = sqlite3.connect(DB_FILE)
+        idinfo = id_token.verify_oauth2_token(
+            credential,
+            grequests.Request(),
+            GOOGLE_CLIENT_ID,
+        )
+        email = idinfo.get("email")
+        name = idinfo.get("name") or ""
+        picture = idinfo.get("picture") or ""
+
+        if not email:
+            return jsonify({"error": "No email in token"}), 400
+
+        conn = db()
         c = conn.cursor()
 
-        # Провери дали компјутерот веќе постои
-        c.execute("SELECT id FROM computers WHERE name = ?", (computer_name,))
-        result = c.fetchone()
-
-        if result:
-            # Компјутерот постои - ажурирај го
-            computer_id = result[0]
-            c.execute('''UPDATE computers 
-                        SET user = ?, ip = ?, os = ?, last_seen = ?, sysmon_available = ?, env_name = ?
-                        WHERE id = ?''',
-                      (info['user'], info['ip_address'], info['os'],
-                       timestamp.isoformat(), info.get('is_sysmon_available', 0),
-                       env_name, computer_id))
+        # upsert user
+        c.execute("SELECT id FROM users WHERE email=?", (email,))
+        row = c.fetchone()
+        if row:
+            user_id = row["id"]
+            c.execute("UPDATE users SET name=?, picture=? WHERE id=?", (name, picture, user_id))
         else:
-            # Нов компјутер - додади го
-            c.execute('''INSERT INTO computers 
-                        (name, user, ip, os, first_seen, last_seen, sysmon_available, env_name) 
-                        VALUES (?, ?, ?, ?, ?, ?, ?, ?)''',
-                      (computer_name, info['user'], info['ip_address'],
-                       info['os'], timestamp.isoformat(), timestamp.isoformat(),
-                       info.get('is_sysmon_available', 0), env_name))
-
-            computer_id = c.lastrowid
-
-        # Додади во историја
-        c.execute('''INSERT INTO computer_history 
-                    (computer_id, cpu_usage, ram_usage, disk_usage,
-                     network_sent_mb, network_recv_mb, timestamp)
-                    VALUES (?, ?, ?, ?, ?, ?, ?)''',
-                  (computer_id, info['cpu_usage'], info['ram_usage'],
-                   info['disk_usage'], info.get('network_sent_mb', 0),
-                   info.get('network_recv_mb', 0), info['timestamp']))
-
-        # Зачувај ги процесите
-        for proc in data.get('processes', []):
-            c.execute('''INSERT INTO computer_processes 
-                        (computer_id, pid, name, cpu_percent, memory_mb, 
-                         username, cmdline, timestamp)
-                        VALUES (?, ?, ?, ?, ?, ?, ?, ?)''',
-                      (computer_id, proc.get('pid'), proc.get('name'),
-                       proc.get('cpu_percent', 0), proc.get('memory_mb', 0),
-                       proc.get('user'), proc.get('cmdline'), info['timestamp']))
-
-        # ЗАЧУВАЈ SYSMON НАСТАНИ
-        sysmon_events_count = 0
-        for event in security_data.get('sysmon_events', []):
-            try:
-                c.execute('''INSERT INTO sysmon_events 
-                            (computer_id, event_id, event_type, message, 
-                             timestamp, details)
-                            VALUES (?, ?, ?, ?, ?, ?)''',
-                          (computer_id, event.get('event_id'),
-                           event.get('event_type', 'Unknown'),
-                           event.get('message', ''),
-                           event.get('timestamp', info['timestamp']),
-                           json.dumps(event)))
-                sysmon_events_count += 1
-            except Exception as e:
-                print(f"Error saving Sysmon event: {e}")
-
-        # ЗАЧУВАЈ МРЕЖНИ КОНЕКЦИИ
-        for conn_data in security_data.get('network_connections', []):
-            try:
-                c.execute('''INSERT INTO network_connections 
-                            (computer_id, pid, local_address, remote_address,
-                             status, process_name, timestamp)
-                            VALUES (?, ?, ?, ?, ?, ?, ?)''',
-                          (computer_id, conn_data.get('pid'),
-                           conn_data.get('local_address'),
-                           conn_data.get('remote_address'),
-                           conn_data.get('status'),
-                           conn_data.get('process_name'),
-                           info['timestamp']))
-            except Exception as e:
-                print(f"Error saving network connection: {e}")
+            c.execute(
+                "INSERT INTO users(email, name, picture, created_at) VALUES(?,?,?, datetime('now'))",
+                (email, name, picture),
+            )
+            user_id = c.lastrowid
+
+        # membership -> tenant (create tenant if first time)
+        c.execute("SELECT tenant_id, role FROM memberships WHERE user_id=? LIMIT 1", (user_id,))
+        m = c.fetchone()
+
+        if not m:
+            tenant_name = email.split("@")[0]
+            c.execute(
+                "INSERT INTO tenants(name, owner_email, created_at) VALUES(?,?, datetime('now'))",
+                (tenant_name, email),
+            )
+            tenant_id = c.lastrowid
+            role = "admin"
+
+            c.execute(
+                "INSERT INTO memberships(user_id, tenant_id, role, created_at) VALUES(?,?, 'admin', datetime('now'))",
+                (user_id, tenant_id),
+            )
+
+            # default env for this tenant
+            c.execute(
+                "INSERT OR IGNORE INTO environments(tenant_id, name, created_at) VALUES(?, 'default', datetime('now'))",
+                (tenant_id,),
+            )
+        else:
+            tenant_id = m["tenant_id"]
+            role = m["role"] or "admin"
 
         conn.commit()
         conn.close()
 
-        # Зачувај во JSON
-        save_json_file(data)
-
-        print(f"[{timestamp.strftime('%H:%M:%S')}] 📥 {computer_name}: "
-              f"CPU {info['cpu_usage']}% | Sysmon: {sysmon_events_count} events")
-
-        return jsonify({
-            "status": "success",
-            "message": f"Data saved for {computer_name}",
-            "computer_id": computer_id,
-            "event_count": sysmon_events_count,
-            "timestamp": timestamp.isoformat()
-        })
+        session = make_jwt(
+            {
+                "uid": user_id,
+                "email": email,
+                "name": name,
+                "role": role,
+                "tenant_id": tenant_id,
+            },
+            minutes=60 * 24,
+        )
+
+        resp = jsonify({"ok": True, "user": {"email": email, "name": name, "role": role, "tenant_id": tenant_id}})
+        resp.set_cookie(
+            "session",
+            session,
+            httponly=True,
+            samesite="Lax",
+            secure=COOKIE_SECURE,
+            max_age=60 * 60 * 24,
+        )
+        return resp
 
     except Exception as e:
-        print(f"[-] Грешка: {e}")
-        return jsonify({"error": str(e)}), 500
-
-
-def save_json_file(data):
-    """Зачувај во JSON"""
-    info = data['info']
-    computer_name = info['computer_name']
-    date_str = datetime.now().strftime("%Y%m%d_%H")
-
-    # Креирај folder за компјутерот
-    computer_dir = os.path.join(LOG_DIR, computer_name)
-    os.makedirs(computer_dir, exist_ok=True)
-
-    # Фајл за секој час (за подобро организирање)
-    filepath = os.path.join(computer_dir, f"{date_str}.json")
-
-    # Додади во постоечки фајл или креирај нов
-    if os.path.exists(filepath):
-        with open(filepath, 'r', encoding='utf-8') as f:
-            existing_data = json.load(f)
-    else:
-        existing_data = []
-
-    # Додади нов запис
-    existing_data.append({
-        "timestamp": info['timestamp'],
-        "info": info,
-        "processes_count": len(data.get('processes', [])),
-        "sysmon_events_count": len(data.get('security_data', {}).get('sysmon_events', []))
-    })
-
-    # Зачувај
-    with open(filepath, 'w', encoding='utf-8') as f:
-        json.dump(existing_data, f, indent=2, ensure_ascii=False)
-
-
-@app.route('/')
-def dashboard():
-    """Главен dashboard"""
-    conn = sqlite3.connect(DB_FILE)
+        return jsonify({"error": "Invalid Google token", "details": str(e)}), 401
+
+
+@app.route("/api/me", methods=["GET"])
+@require_user()
+def api_me():
+    return jsonify({"user": request.user})
+
+
+@app.route("/api/auth/logout", methods=["POST"])
+def auth_logout():
+    resp = jsonify({"ok": True})
+    resp.set_cookie("session", "", expires=0)
+    return resp
+
+
+# ----------------------------
+# Admin endpoints
+# ----------------------------
+@app.route("/api/admin/environments", methods=["GET"])
+@require_tenant_admin()
+def admin_list_envs():
+    tenant_id = request.user["tenant_id"]
+    conn = db()
     c = conn.cursor()
-
-    # Земaj ги сите компјутери
-    c.execute('''SELECT name, user, ip, os, first_seen, last_seen, sysmon_available, env_name
-                 FROM computers
-                 ORDER BY last_seen DESC''')
-
-    computers = []
-    for row in c.fetchall():
-        computer_name = row[0]
-
-        # Пресметaj колку записи има во последните 24 часа
-        c.execute('''SELECT COUNT(*) FROM computer_history 
-                     WHERE computer_id = (SELECT id FROM computers WHERE name = ?)
-                     AND timestamp > datetime('now', '-24 hours')''',
-                  (computer_name,))
-        recent_logs = c.fetchone()[0]
-
-        # Земaj ги последните 5 записи за CPU/RAM
-        c.execute('''SELECT cpu_usage, ram_usage, timestamp 
-                     FROM computer_history 
-                     WHERE computer_id = (SELECT id FROM computers WHERE name = ?)
-                     ORDER BY timestamp DESC LIMIT 5''',
-                  (computer_name,))
-        recent_metrics = c.fetchall()
-
-        # Sysmon настани за последните 24 часа
-        c.execute('''SELECT COUNT(*) FROM sysmon_events 
-                     WHERE computer_id = (SELECT id FROM computers WHERE name = ?)
-                     AND timestamp > datetime('now', '-24 hours')''',
-                  (computer_name,))
-        recent_sysmon = c.fetchone()[0]
-
-        # Пресметaj просек
-        avg_cpu = sum(m[0] for m in recent_metrics) / len(recent_metrics) if recent_metrics else 0
-        avg_ram = sum(m[1] for m in recent_metrics) / len(recent_metrics) if recent_metrics else 0
-
-        # Статус
-        last_seen = datetime.fromisoformat(row[5])
-        time_diff = (datetime.now() - last_seen).seconds
-
-        if time_diff < 60:
-            status = 'online'
-            status_color = 'green'
-        elif time_diff < 300:
-            status = 'idle'
-            status_color = 'orange'
-        else:
-            status = 'offline'
-            status_color = 'gray'
-
-        computers.append({
-            'name': row[0],
-            'user': row[1],
-            'ip': row[2],
-            'os': row[3],
-            'first_seen': row[4],
-            'last_seen': row[5],
-            'sysmon_available': bool(row[6]),
-            'recent_logs': recent_logs,
-            'recent_sysmon': recent_sysmon,
-            'avg_cpu': round(avg_cpu, 1),
-            'avg_ram': round(avg_ram, 1),
-            'status': status,
-            'status_color': status_color,
-            'env_name': row[7],
-        })
-
+    c.execute("SELECT name FROM environments WHERE tenant_id=? ORDER BY name", (tenant_id,))
+    envs = [r["name"] for r in c.fetchall()]
     conn.close()
-
-    # Генерирај HTML
-    return render_template_string('''
-    <!DOCTYPE html>
-    <html>
-    <head>
-        <title>LAN Log Server - Sysmon Dashboard</title>
-        <meta charset="utf-8">
-        <meta name="viewport" content="width=device-width, initial-scale=1">
-        <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
-        <style>
-            :root {
-                --primary-color: #2c3e50;
-                --secondary-color: #3498db;
-                --danger-color: #e74c3c;
-                --warning-color: #f39c12;
-                --success-color: #27ae60;
-            }
-
-            body { 
-                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
-                margin: 0; 
-                padding: 20px; 
-                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-                min-height: 100vh;
-            }
-
-            .container {
-                max-width: 1400px;
-                margin: 0 auto;
-                background: white;
-                border-radius: 15px;
-                box-shadow: 0 20px 40px rgba(0,0,0,0.1);
-                overflow: hidden;
-            }
-
-            .header {
-                background: linear-gradient(to right, var(--primary-color), #1a2530);
-                color: white;
-                padding: 30px 40px;
-                border-radius: 15px 15px 0 0;
-            }
-
-            .header h1 {
-                margin: 0;
-                font-size: 2.5em;
-                display: flex;
-                align-items: center;
-                gap: 15px;
-            }
-
-            .stats-grid {
-                display: grid;
-                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
-                gap: 20px;
-                padding: 30px;
-            }
-
-            .stat-card {
-                background: white;
-                padding: 25px;
-                border-radius: 10px;
-                box-shadow: 0 5px 15px rgba(0,0,0,0.08);
-                border-left: 5px solid var(--secondary-color);
-                transition: transform 0.3s ease;
-            }
-
-            .stat-card:hover {
-                transform: translateY(-5px);
-            }
-
-            .stat-card.sysmon {
-                border-left-color: var(--danger-color);
-            }
-
-            .stat-card.network {
-                border-left-color: var(--success-color);
-            }
-
-            .stat-value {
-                font-size: 2.8em;
-                font-weight: bold;
-                margin: 10px 0;
-            }
-
-            .stat-label {
-                color: #666;
-                font-size: 0.9em;
-                text-transform: uppercase;
-                letter-spacing: 1px;
-            }
-
-            .computers-grid {
-                display: grid;
-                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
-                gap: 25px;
-                padding: 30px;
-            }
-
-            .computer-card {
-                background: white;
-                border-radius: 12px;
-                padding: 25px;
-                box-shadow: 0 8px 20px rgba(0,0,0,0.1);
-                cursor: pointer;
-                transition: all 0.3s ease;
-                border: 2px solid transparent;
-                position: relative;
-                overflow: hidden;
-            }
-
-            .computer-card:hover {
-                transform: translateY(-8px);
-                box-shadow: 0 15px 30px rgba(0,0,0,0.15);
-                border-color: var(--secondary-color);
-            }
-
-            .computer-card::before {
-                content: '';
-                position: absolute;
-                top: 0;
-                left: 0;
-                right: 0;
-                height: 4px;
-                background: linear-gradient(to right, #667eea, #764ba2);
-            }
-
-            .computer-name {
-                font-size: 1.4em;
-                font-weight: bold;
-                color: var(--primary-color);
-                margin-bottom: 10px;
-                display: flex;
-                justify-content: space-between;
-                align-items: center;
-            }
-
-            .status-indicator {
-                display: inline-block;
-                width: 12px;
-                height: 12px;
-                border-radius: 50%;
-                margin-right: 8px;
-            }
-
-            .computer-info {
-                color: #555;
-                margin: 8px 0;
-                font-size: 0.95em;
-                display: flex;
-                align-items: center;
-                gap: 10px;
-            }
-
-            .computer-info i {
-                width: 20px;
-                color: #777;
-            }
-
-            .stats-row {
-                display: flex;
-                justify-content: space-between;
-                margin-top: 20px;
-                padding-top: 20px;
-                border-top: 1px solid #eee;
-            }
-
-            .stat-item {
-                text-align: center;
-            }
-
-            .stat-number {
-                font-size: 1.6em;
-                font-weight: bold;
-                color: var(--primary-color);
-            }
-
-            .stat-text {
-                font-size: 0.8em;
-                color: #777;
-                margin-top: 5px;
-            }
-
-            .sysmon-badge {
-                background: var(--danger-color);
-                color: white;
-                padding: 3px 10px;
-                border-radius: 20px;
-                font-size: 0.8em;
-                display: inline-block;
-                margin-left: 10px;
-            }
-
-            /* Модал */
-            .modal {
-                display: none;
-                position: fixed;
-                top: 0;
-                left: 0;
-                right: 0;
-                bottom: 0;
-                background: rgba(0,0,0,0.7);
-                z-index: 1000;
-                overflow-y: auto;
-            }
-
-            .modal-content {
-                background: white;
-                margin: 50px auto;
-                width: 90%;
-                max-width: 1200px;
-                border-radius: 15px;
-                animation: modalSlideIn 0.3s ease;
-            }
-
-            @keyframes modalSlideIn {
-                from {
-                    transform: translateY(-50px);
-                    opacity: 0;
-                }
-                to {
-                    transform: translateY(0);
-                    opacity: 1;
-                }
-            }
-
-            .modal-header {
-                padding: 25px 30px;
-                background: var(--primary-color);
-                color: white;
-                border-radius: 15px 15px 0 0;
-                display: flex;
-                justify-content: space-between;
-                align-items: center;
-            }
-
-            .close-btn {
-                background: none;
-                border: none;
-                color: white;
-                font-size: 1.8em;
-                cursor: pointer;
-                width: 40px;
-                height: 40px;
-                border-radius: 50%;
-                display: flex;
-                align-items: center;
-                justify-content: center;
-                transition: background 0.2s;
-            }
-
-            .close-btn:hover {
-                background: rgba(255,255,255,0.1);
-            }
-
-            .tabs {
-                display: flex;
-                border-bottom: 1px solid #ddd;
-                padding: 0 30px;
-                background: #f8f9fa;
-            }
-
-            .tab-btn {
-                padding: 15px 25px;
-                background: none;
-                border: none;
-                cursor: pointer;
-                font-size: 1em;
-                color: #666;
-                position: relative;
-                transition: all 0.3s;
-            }
-
-            .tab-btn:hover {
-                color: var(--primary-color);
-            }
-
-            .tab-btn.active {
-                color: var(--primary-color);
-                font-weight: bold;
-            }
-
-            .tab-btn.active::after {
-                content: '';
-                position: absolute;
-                bottom: -1px;
-                left: 0;
-                right: 0;
-                height: 3px;
-                background: var(--secondary-color);
-            }
-
-            .tab-content {
-                padding: 30px;
-                display: none;
-            }
-
-            .tab-content.active {
-                display: block;
-            }
-
-            .events-table {
-                width: 100%;
-                border-collapse: collapse;
-                margin-top: 20px;
-            }
-
-            .events-table th {
-                background: #f8f9fa;
-                padding: 15px;
-                text-align: left;
-                border-bottom: 2px solid #dee2e6;
-                color: var(--primary-color);
-            }
-
-            .events-table td {
-                padding: 12px 15px;
-                border-bottom: 1px solid #eee;
-            }
-
-            .events-table tr:hover {
-                background: #f8f9fa;
-            }
-
-            .severity-high {
-                background: #ffe6e6;
-                color: var(--danger-color);
-                padding: 3px 10px;
-                border-radius: 3px;
-                font-weight: bold;
-            }
-
-            .severity-medium {
-                background: #fff3cd;
-                color: var(--warning-color);
-                padding: 3px 10px;
-                border-radius: 3px;
-            }
-
-            .event-details {
-                max-width: 500px;
-                word-wrap: break-word;
-                font-family: monospace;
-                font-size: 0.9em;
-            }
-
-            .filter-bar {
-                padding: 20px 30px;
-                background: #f8f9fa;
-                border-bottom: 1px solid #ddd;
-            }
-
-            .search-box {
-                padding: 10px 15px;
-                border: 1px solid #ddd;
-                border-radius: 5px;
-                width: 300px;
-            }
-
-            .btn {
-                padding: 10px 20px;
-                background: var(--secondary-color);
-                color: white;
-                border: none;
-                border-radius: 5px;
-                cursor: pointer;
-                transition: background 0.3s;
-            }
-
-            .btn:hover {
-                background: #2980b9;
-            }
-
-            .chart-container {
-                height: 300px;
-                margin: 20px 0;
-            }
-
-            @media (max-width: 768px) {
-                .computers-grid {
-                    grid-template-columns: 1fr;
-                }
-
-                .modal-content {
-                    width: 95%;
-                    margin: 20px auto;
-                }
-            }
-        </style>
-    </head>
-    <body>
-        <div class="container">
-            <div class="header">
-                <h1>
-                    <span>🛡️ LAN Security Monitor</span>
-                    <small style="font-size: 0.5em; opacity: 0.8;">Sysmon Edition</small>
-                </h1>
-                <p>Server: {{ socket.gethostbyname(socket.gethostname()) }}:5555 | Total Computers: {{ computers|length }}</p>
-            </div>
-
-            <div class="stats-grid">
-                <div class="stat-card">
-                    <div class="stat-label">Total Computers</div>
-                    <div class="stat-value">{{ computers|length }}</div>
-                    <div class="stat-text">Monitored Systems</div>
-                </div>
-
-                <div class="stat-card sysmon">
-                    <div class="stat-label">Sysmon Events (24h)</div>
-                    <div class="stat-value" id="total-sysmon">0</div>
-                    <div class="stat-text">Security Events</div>
-                </div>
-
-                <div class="stat-card network">
-                    <div class="stat-label">Network Connections</div>
-                    <div class="stat-value" id="total-network">0</div>
-                    <div class="stat-text">Active Connections</div>
-                </div>
-            </div>
-
-            <div style="padding: 0 30px;">
-                <h2>Connected Computers</h2>
-                <div class="computers-grid" id="computers-grid">
-                    {% for comp in computers %}
-                    <div class="computer-card" onclick="showComputerDetails('{{ comp.name }}')">
-                        <div class="computer-name">
-                            {{ comp.name }}
-                            <span class="status-indicator" style="background: {{ comp.status_color }}"></span>
-                        </div>
-
-                        <div class="computer-info">
-                            <i>👤</i> {{ comp.user }}
-                        </div>
-
-                        <div class="computer-info">
-                            <i>🌐</i> {{ comp.ip }}
-                        </div>
-                        <div class="computer-info">
-                        <i>🏷️</i> Env: {{ comp.env_name }}</div>
-
-
-                        <div class="computer-info">
-                            <i>💻</i> {{ comp.os[:40] }}
-                        </div>
-
-                        <div class="computer-info">
-                            <i>⏰</i> Last seen: {{ comp.last_seen[11:19] }}
-                        </div>
-
-                        {% if comp.sysmon_available %}
-                        <div class="computer-info">
-                            <i>🛡️</i> Sysmon Available
-                            <span class="sysmon-badge">{{ comp.recent_sysmon }} events</span>
-                        </div>
-                        {% endif %}
-
-                        <div class="stats-row">
-                            <div class="stat-item">
-                                <div class="stat-number">{{ comp.avg_cpu }}%</div>
-                                <div class="stat-text">CPU</div>
-                            </div>
-                            <div class="stat-item">
-                                <div class="stat-number">{{ comp.avg_ram }}%</div>
-                                <div class="stat-text">RAM</div>
-                            </div>
-                            <div class="stat-item">
-                                <div class="stat-number">{{ comp.recent_logs }}</div>
-                                <div class="stat-text">Logs (24h)</div>
-                            </div>
-                        </div>
-                    </div>
-                    {% endfor %}
-                </div>
-            </div>
-        </div>
-
-        <!-- Детален модал -->
-        <div class="modal" id="computer-modal">
-            <div class="modal-content">
-                <div class="modal-header">
-                    <h2 id="modal-title">Computer Details</h2>
-                    <button class="close-btn" onclick="closeModal()">×</button>
-                </div>
-
-                <div class="filter-bar">
-                    <input type="text" id="event-search" class="search-box" placeholder="Search events..." 
-                           onkeyup="filterEvents()">
-                    <button class="btn" onclick="exportData()">Export Data</button>
-                </div>
-
-                <div class="tabs">
-                    <button class="tab-btn active" onclick="switchTab('overview')">Overview</button>
-                    <button class="tab-btn" onclick="switchTab('sysmon')">Sysmon Events</button>
-                    <button class="tab-btn" onclick="switchTab('processes')">Processes</button>
-                    <button class="tab-btn" onclick="switchTab('network')">Network</button>
-                    <button class="tab-btn" onclick="switchTab('charts')">Charts</button>
-                </div>
-
-                <!-- Overview Tab -->
-                <div class="tab-content active" id="overview-tab">
-                    <h3>System Overview</h3>
-                    <div id="overview-content"></div>
-                </div>
-
-                <!-- Sysmon Events Tab -->
-                <div class="tab-content" id="sysmon-tab">
-                    <h3>Security Events</h3>
-                    <table class="events-table" id="sysmon-table">
-                        <thead>
-                            <tr>
-                                <th>Time</th>
-                                <th>Event ID</th>
-                                <th>Type</th>
-                                <th>Severity</th>
-                                <th>Message</th>
-                                <th>Actions</th>
-                            </tr>
-                        </thead>
-                        <tbody id="sysmon-events">
-                            <!-- Events will be populated here -->
-                        </tbody>
-                    </table>
-                </div>
-
-                <!-- Processes Tab -->
-                <div class="tab-content" id="processes-tab">
-                    <h3>Running Processes</h3>
-                    <table class="events-table">
-                        <thead>
-                            <tr>
-                                <th>PID</th>
-                                <th>Name</th>
-                                <th>User</th>
-                                <th>CPU %</th>
-                                <th>Memory</th>
-                                <th>Command Line</th>
-                            </tr>
-                        </thead>
-                        <tbody id="processes-list">
-                            <!-- Processes will be populated here -->
-                        </tbody>
-                    </table>
-                </div>
-
-                <!-- Network Tab -->
-                <div class="tab-content" id="network-tab">
-                    <h3>Network Connections</h3>
-                    <table class="events-table">
-                        <thead>
-                            <tr>
-                                <th>PID</th>
-                                <th>Process</th>
-                                <th>Local Address</th>
-                                <th>Remote Address</th>
-                                <th>Status</th>
-                                <th>Timestamp</th>
-                            </tr>
-                        </thead>
-                        <tbody id="network-connections">
-                            <!-- Connections will be populated here -->
-                        </tbody>
-                    </table>
-                </div>
-
-                <!-- Charts Tab -->
-                <div class="tab-content" id="charts-tab">
-                    <h3>Performance Analytics</h3>
-                    <div class="chart-container">
-                        <canvas id="performance-chart"></canvas>
-                    </div>
-                </div>
-            </div>
-        </div>
-
-        <!-- Event Details Modal -->
-        <div class="modal" id="event-modal" style="display: none;">
-            <div class="modal-content" style="max-width: 800px;">
-                <div class="modal-header">
-                    <h2>Event Details</h2>
-                    <button class="close-btn" onclick="closeEventModal()">×</button>
-                </div>
-                <div style="padding: 30px;">
-                    <pre id="event-details-content" style="background: #f5f5f5; padding: 20px; border-radius: 5px; overflow: auto; max-height: 500px;"></pre>
-                </div>
-            </div>
-        </div>
-
-        <script>
-            let currentComputer = null;
-            let allSysmonEvents = [];
-
-            function updateStats() {
-                // Ажурирај ги вкупните статистики
-                fetch('/api/stats')
-                    .then(r => r.json())
-                    .then(data => {
-                        document.getElementById('total-sysmon').textContent = data.total_sysmon_events;
-                        document.getElementById('total-network').textContent = data.total_network_connections;
-                    });
-            }
-
-            function showComputerDetails(computerName) {
-                currentComputer = computerName;
-
-                // Покажи модал
-                document.getElementById('computer-modal').style.display = 'block';
-                document.getElementById('modal-title').textContent = computerName;
-
-                // Вчитувај податоци
-                loadComputerDetails(computerName);
-            }
-
-            function loadComputerDetails(computerName) {
-                // Вчитувај целосни податоци за компјутерот
-                fetch(`/api/computer/${encodeURIComponent(computerName)}`)
-                    .then(response => response.json())
-                    .then(data => {
-                        populateOverview(data);
-                        populateSysmonEvents(data);
-                        populateProcesses(data);
-                        populateNetwork(data);
-                        updateCharts(data);
-                    })
-                    .catch(error => {
-                        console.error('Error loading details:', error);
-                    });
-            }
-
-            function populateOverview(data) {
-                const overview = document.getElementById('overview-content');
-                overview.innerHTML = `
-                    <div style="display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;">
-                        <div>
-                            <h4>System Information</h4>
-                            <p><strong>User:</strong> ${data.computer.user}</p>
-                            <p><strong>IP:</strong> ${data.computer.ip}</p>
-                            <p><strong>OS:</strong> ${data.computer.os}</p>
-                            <p><strong>First Seen:</strong> ${new Date(data.computer.first_seen).toLocaleString()}</p>
-                            <p><strong>Last Seen:</strong> ${new Date(data.computer.last_seen).toLocaleString()}</p>
-                            <p><strong>Total Logs:</strong> ${data.computer.total_logs}</p>
-                        </div>
-                        <div>
-                            <h4>Current Status</h4>
-                            <p><strong>CPU Usage:</strong> ${data.current_metrics?.cpu_usage || 0}%</p>
-                            <p><strong>RAM Usage:</strong> ${data.current_metrics?.ram_usage || 0}%</p>
-                            <p><strong>Disk Usage:</strong> ${data.current_metrics?.disk_usage || 0}%</p>
-                            <p><strong>Network Sent:</strong> ${data.current_metrics?.network_sent_mb || 0} MB</p>
-                            <p><strong>Network Received:</strong> ${data.current_metrics?.network_recv_mb || 0} MB</p>
-                        </div>
-                    </div>
-                `;
-            }
-
-            function populateSysmonEvents(data) {
-                const tableBody = document.getElementById('sysmon-events');
-                tableBody.innerHTML = '';
-                allSysmonEvents = data.sysmon_events || [];
-
-                allSysmonEvents.forEach(event => {
-                    const row = tableBody.insertRow();
-                    const time = new Date(event.timestamp).toLocaleTimeString();
-                    const severity = getSeverityForEvent(event.event_id);
-
-                    row.innerHTML = `
-                        <td>${time}</td>
-                        <td>${event.event_id}</td>
-                        <td>${event.event_type}</td>
-                        <td><span class="severity-${severity}">${severity.toUpperCase()}</span></td>
-                        <td class="event-details">${event.message.substring(0, 100)}...</td>
-                        <td>
-                            <button class="btn" style="padding: 5px 10px; font-size: 0.9em;" 
-                                    onclick="showEventDetails(${JSON.stringify(event).replace(/"/g, '&quot;')})">
-                                View Details
-                            </button>
-                        </td>
-                    `;
-                });
-            }
-
-            function populateProcesses(data) {
-                const tableBody = document.getElementById('processes-list');
-                tableBody.innerHTML = '';
-
-                (data.recent_processes || []).forEach(proc => {
-                    const row = tableBody.insertRow();
-                    row.innerHTML = `
-                        <td>${proc.pid}</td>
-                        <td>${proc.name}</td>
-                        <td>${proc.username}</td>
-                        <td>${proc.cpu_percent || 0}</td>
-                        <td>${proc.memory_mb || 0} MB</td>
-                        <td class="event-details">${proc.cmdline || ''}</td>
-                    `;
-                });
-            }
-
-            function populateNetwork(data) {
-                const tableBody = document.getElementById('network-connections');
-                tableBody.innerHTML = '';
-
-                (data.network_connections || []).forEach(conn => {
-                    const row = tableBody.insertRow();
-                    const time = new Date(conn.timestamp).toLocaleTimeString();
-                    row.innerHTML = `
-                        <td>${conn.pid}</td>
-                        <td>${conn.process_name || 'N/A'}</td>
-                        <td>${conn.local_address || 'N/A'}</td>
-                        <td>${conn.remote_address || 'N/A'}</td>
-                        <td>${conn.status}</td>
-                        <td>${time}</td>
-                    `;
-                });
-            }
-
-            function updateCharts(data) {
-                const ctx = document.getElementById('performance-chart').getContext('2d');
-                const history = data.history || [];
-
-                const labels = history.slice(-20).map(h => 
-                    new Date(h.timestamp).toLocaleTimeString()
-                );
-                const cpuData = history.slice(-20).map(h => h.cpu_usage);
-                const ramData = history.slice(-20).map(h => h.ram_usage);
-
-                if(window.performanceChart) {
-                    window.performanceChart.destroy();
-                }
-
-                window.performanceChart = new Chart(ctx, {
-                    type: 'line',
-                    data: {
-                        labels: labels,
-                        datasets: [
-                            {
-                                label: 'CPU Usage %',
-                                data: cpuData,
-                                borderColor: 'rgb(255, 99, 132)',
-                                backgroundColor: 'rgba(255, 99, 132, 0.2)',
-                                tension: 0.4
-                            },
-                            {
-                                label: 'RAM Usage %',
-                                data: ramData,
-                                borderColor: 'rgb(54, 162, 235)',
-                                backgroundColor: 'rgba(54, 162, 235, 0.2)',
-                                tension: 0.4
-                            }
-                        ]
-                    },
-                    options: {
-                        responsive: true,
-                        maintainAspectRatio: false,
-                        scales: {
-                            y: {
-                                beginAtZero: true,
-                                max: 100
-                            }
-                        }
-                    }
-                });
-            }
-
-            function getSeverityForEvent(eventId) {
-                const highSeverity = [1, 3, 8, 10]; // Process creation, network, remote thread, process access
-                const mediumSeverity = [5, 6, 7, 11, 22]; // Process termination, driver/image load, file create, DNS
-
-                if (highSeverity.includes(parseInt(eventId))) return 'high';
-                if (mediumSeverity.includes(parseInt(eventId))) return 'medium';
-                return 'low';
-            }
-
-            function showEventDetails(event) {
-                document.getElementById('event-details-content').textContent = 
-                    JSON.stringify(event, null, 2);
-                document.getElementById('event-modal').style.display = 'block';
-            }
-
-            function closeEventModal() {
-                document.getElementById('event-modal').style.display = 'none';
-            }
-
-            function filterEvents() {
-                const searchTerm = document.getElementById('event-search').value.toLowerCase();
-                const tableBody = document.getElementById('sysmon-events');
-                tableBody.innerHTML = '';
-
-                allSysmonEvents
-                    .filter(event => 
-                        event.message.toLowerCase().includes(searchTerm) ||
-                        event.event_type.toLowerCase().includes(searchTerm) ||
-                        event.event_id.toString().includes(searchTerm)
-                    )
-                    .forEach(event => {
-                        const row = tableBody.insertRow();
-                        const time = new Date(event.timestamp).toLocaleTimeString();
-                        const severity = getSeverityForEvent(event.event_id);
-
-                        row.innerHTML = `
-                            <td>${time}</td>
-                            <td>${event.event_id}</td>
-                            <td>${event.event_type}</td>
-                            <td><span class="severity-${severity}">${severity.toUpperCase()}</span></td>
-                            <td class="event-details">${event.message.substring(0, 100)}...</td>
-                            <td>
-                                <button class="btn" style="padding: 5px 10px; font-size: 0.9em;" 
-                                        onclick="showEventDetails(${JSON.stringify(event).replace(/"/g, '&quot;')})">
-                                    View Details
-                                </button>
-                            </td>
-                        `;
-                    });
-            }
-
-            function switchTab(tabName) {
-                // Деактивирај сите tab-ови
-                document.querySelectorAll('.tab-btn').forEach(btn => {
-                    btn.classList.remove('active');
-                });
-                document.querySelectorAll('.tab-content').forEach(tab => {
-                    tab.classList.remove('active');
-                });
-
-                // Активирај избраниот tab
-                document.querySelector(`[onclick="switchTab('${tabName}')"]`).classList.add('active');
-                document.getElementById(`${tabName}-tab`).classList.add('active');
-            }
-
-            function closeModal() {
-                document.getElementById('computer-modal').style.display = 'none';
-                currentComputer = null;
-                allSysmonEvents = [];
-            }
-
-            function exportData() {
-                if (!currentComputer) return;
-
-                fetch(`/api/export/${encodeURIComponent(currentComputer)}`)
-                    .then(response => response.blob())
-                    .then(blob => {
-                        const url = window.URL.createObjectURL(blob);
-                        const a = document.createElement('a');
-                        a.href = url;
-                        a.download = `${currentComputer}_export_${new Date().toISOString().slice(0,10)}.json`;
-                        document.body.appendChild(a);
-                        a.click();
-                        document.body.removeChild(a);
-                    });
-            }
-
-            // Auto-refresh
-            setInterval(() => {
-                updateStats();
-
-                // Ажурирај детали ако модал е отворен
-                if (currentComputer && document.getElementById('computer-modal').style.display === 'block') {
-                    loadComputerDetails(currentComputer);
-                }
-            }, 30000);
-
-            // Затвори модал со Escape
-            document.addEventListener('keydown', (e) => {
-                if (e.key === 'Escape') {
-                    closeModal();
-                    closeEventModal();
-                }
-            });
-
-            // Иницијализирај статистики при старт
-            updateStats();
-        </script>
-    </body>
-    </html>
-    ''', computers=computers, socket=socket, datetime=datetime)
-
-
-@app.route('/api/computer/<computer_name>')
-def get_computer_details(computer_name):
-    """Добиј сите детални информации за еден компјутер"""
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-
-    # Основни информации
-    c.execute('''SELECT id, name, user, ip, os, first_seen, last_seen 
-                 FROM computers WHERE name = ?''', (computer_name,))
-    computer_data = c.fetchone()
-
-    if not computer_data:
-        conn.close()
-        return jsonify({"error": "Computer not found"}), 404
-
-    computer_id = computer_data[0]
-
-    # Број на сите записи
-    c.execute('SELECT COUNT(*) FROM computer_history WHERE computer_id = ?', (computer_id,))
-    total_logs = c.fetchone()[0]
-
-    # Сите history записи
-    c.execute('''SELECT cpu_usage, ram_usage, disk_usage, network_sent_mb, network_recv_mb, timestamp 
-                 FROM computer_history 
-                 WHERE computer_id = ? 
-                 ORDER BY timestamp DESC LIMIT 100''', (computer_id,))
-    history = []
-    for row in c.fetchall():
-        history.append({
-            'cpu_usage': row[0],
-            'ram_usage': row[1],
-            'disk_usage': row[2],
-            'network_sent_mb': row[3],
-            'network_recv_mb': row[4],
-            'timestamp': row[5]
-        })
-
-    # Последни метрики
-    current_metrics = history[0] if history else {}
-
-    # Последни процеси
-    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,))
-    recent_processes = []
-    for row in c.fetchall():
-        recent_processes.append({
-            'pid': row[0],
-            'name': row[1],
-            'username': row[2],
-            'cpu_percent': row[3],
-            'memory_mb': row[4],
-            'cmdline': row[5],
-            'timestamp': row[6]
-        })
-
-    # SYSMON НАСТАНИ
-    c.execute('''SELECT event_id, event_type, message, timestamp, details 
-                 FROM sysmon_events 
-                 WHERE computer_id = ? 
-                 ORDER BY timestamp DESC LIMIT 200''', (computer_id,))
-    sysmon_events = []
-    for row in c.fetchall():
-        try:
-            details = json.loads(row[4]) if row[4] else {}
-        except:
-            details = {}
-
-        sysmon_events.append({
-            'event_id': row[0],
-            'event_type': row[1],
-            'message': row[2],
-            'timestamp': row[3],
-            'details': details
-        })
-
-    # Мрежни конекции
-    c.execute('''SELECT pid, process_name, local_address, remote_address, status, timestamp 
-                 FROM network_connections 
-                 WHERE computer_id = ? 
-                 ORDER BY timestamp DESC LIMIT 100''', (computer_id,))
-    network_connections = []
-    for row in c.fetchall():
-        network_connections.append({
-            'pid': row[0],
-            'process_name': row[1],
-            'local_address': row[2],
-            'remote_address': row[3],
-            'status': row[4],
-            'timestamp': row[5]
-        })
-
-    conn.close()
-
-    return jsonify({
-        'computer': {
-            'id': computer_data[0],
-            'name': computer_data[1],
-            'user': computer_data[2],
-            'ip': computer_data[3],
-            'os': computer_data[4],
-            'first_seen': computer_data[5],
-            'last_seen': computer_data[6],
-            'total_logs': total_logs
-        },
-        'history': history,
-        'current_metrics': current_metrics,
-        'recent_processes': recent_processes,
-        'sysmon_events': sysmon_events,
-        'network_connections': network_connections
-    })
-
-@app.route('/api/computers')
-def get_computers():
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-    env = request.headers.get("X-Env", "default")
-
-    c.execute('''SELECT name, user, ip, os, first_seen, last_seen, sysmon_available 
-                 FROM computers 
-                 WHERE env_name = ?
-                 ORDER BY last_seen DESC''', (env,))
-
-    computers = []
-    for row in c.fetchall():
-        computer_name = row[0]
-
-        # recent logs
-        c.execute('''SELECT COUNT(*) FROM computer_history 
-                     WHERE computer_id = (SELECT id FROM computers WHERE name = ?)
-                     AND timestamp > datetime('now', '-24 hours')''',
-                  (computer_name,))
-        recent_logs = c.fetchone()[0]
-
-        # last 5 metrics
-        c.execute('''SELECT cpu_usage, ram_usage, timestamp 
-                     FROM computer_history 
-                     WHERE computer_id = (SELECT id FROM computers WHERE name = ?)
-                     ORDER BY timestamp DESC LIMIT 5''',
-                  (computer_name,))
-        recent_metrics = c.fetchall()
-
-        c.execute('''SELECT COUNT(*) FROM sysmon_events 
-                     WHERE computer_id = (SELECT id FROM computers WHERE name = ?)
-                     AND timestamp > datetime('now', '-24 hours')''',
-                  (computer_name,))
-        recent_sysmon = c.fetchone()[0]
-
-        avg_cpu = sum(m[0] for m in recent_metrics) / len(recent_metrics) if recent_metrics else 0
-        avg_ram = sum(m[1] for m in recent_metrics) / len(recent_metrics) if recent_metrics else 0
-
-        last_seen = datetime.fromisoformat(row[5])
-        time_diff = (datetime.now() - last_seen).seconds
-
-        if time_diff < 60:
-            status = 'online'
-            status_color = 'green'
-        elif time_diff < 300:
-            status = 'idle'
-            status_color = 'orange'
-        else:
-            status = 'offline'
-            status_color = 'gray'
-
-        computers.append({
-            'name': row[0],
-            'user': row[1],
-            'ip': row[2],
-            'os': row[3],
-            'first_seen': row[4],
-            'last_seen': row[5],
-            'sysmon_available': bool(row[6]),
-            'recent_logs': recent_logs,
-            'recent_sysmon': recent_sysmon,
-            'avg_cpu': round(avg_cpu, 1),
-            'avg_ram': round(avg_ram, 1),
-            'status': status,
-            'status_color': status_color
-        })
-
-    conn.close()
-    return jsonify(computers)
-
-@app.route('/api/stats')
-def get_stats():
-    """Добиј глобални статистики"""
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-
-    # Вкупно Sysmon настани за последните 24 часа
-    c.execute('''SELECT COUNT(*) FROM sysmon_events 
-                 WHERE timestamp > datetime('now', '-24 hours')''')
-    total_sysmon_events = c.fetchone()[0]
-
-    # Вкупно мрежни конекции за последните 24 часа
-    c.execute('''SELECT COUNT(*) FROM network_connections 
-                 WHERE timestamp > datetime('now', '-24 hours')''')
-    total_network_connections = c.fetchone()[0]
-
-    conn.close()
-
-    return jsonify({
-        'total_sysmon_events': total_sysmon_events,
-        'total_network_connections': total_network_connections,
-        'server_time': datetime.now().isoformat()
-    })
-
-def build_rag_context(question, computer_name=None, limit_per_table=10):
-    try:
-        conn = sqlite3.connect(DB_FILE)
-        c = conn.cursor()
-
-        params = []
-        comp_filter = ""
-        if computer_name:
-            comp_filter = "AND computer_id = (SELECT id FROM computers WHERE name = ?)"
-            params.append(computer_name)
-
-        # Sysmon настани
-        c.execute(
-            f"""
-            SELECT timestamp, event_id, event_type, message
-            FROM sysmon_events
-            WHERE 1=1 {comp_filter}
-            ORDER BY timestamp DESC
-            LIMIT ?
-            """,
-            params + [limit_per_table],
-        )
-        sysmon_rows = c.fetchall()
-
-        # Перформанс историја
-        c.execute(
-            f"""
-            SELECT timestamp, cpu_usage, ram_usage, disk_usage,
-                   network_sent_mb, network_recv_mb
-            FROM computer_history
-            WHERE 1=1 {comp_filter}
-            ORDER BY timestamp DESC
-            LIMIT ?
-            """,
-            params + [limit_per_table],
-        )
-        perf_rows = c.fetchall()
-
-        # Процеси
-        c.execute(
-            f"""
-            SELECT timestamp, pid, name, cpu_percent, memory_mb 
-            FROM computer_processes
-            WHERE 1=1 {comp_filter}
-            ORDER BY timestamp DESC
-            LIMIT ?
-            """,
-            params + [limit_per_table],
-        )
-        proc_rows = c.fetchall()
-
-        conn.close()
-
-        print("[RAG] sysmon:", len(sysmon_rows),
-              "| perf:", len(perf_rows),
-              "| proc:", len(proc_rows))
-
-        lines = []
-
-        for ts, eid, etype, msg in sysmon_rows:
-            lines.append(f"[SYSMON] {ts} | Event {eid} ({etype}): {msg}")
-
-        for ts, cpu, ram, disk, nsent, nrecv in perf_rows:
-            lines.append(
-                f"[PERF] {ts} | CPU {cpu}% | RAM {ram}% | Disk {disk}% | "
-                f"Net sent {nsent}MB / recv {nrecv}MB"
-            )
-
-        for ts, pid, name, cpu, mem in proc_rows:
-            lines.append(f"[PROC] {ts} | PID {pid} | {name} | CPU {cpu}% | RAM {mem}MB")
-
-        context = "\n".join(lines)
-        print("[RAG] sample context:\n", "\n".join(lines[:5]))
-        return context
-
-    except Exception as e:
-        traceback.print_exc()
-        return ""
-
-# def ask_llm_with_context(question, context, language="mk"):
-#     if not client:
-#         return "Немаш поставено OPENAI_API_KEY на серверот."
-#
-#     system_msg = (
-#         "Ти си асистент за безбедност и систем мониторинг. "
-#         "Одговараш базирано ИСКЛУЧИВО на дадените логови што ти се дадени. "
-#         "Ако нема доволно информации, кажи дека нема доволно податоци. "
-#         "Објаснувај кратко и јасно."
-#     )
-#
-#     user_msg = f"Прашање: {question}\n\nЛогови:\n{context or 'Нема логови.'}"
-#
-#     try:
-#         completion = client.chat.completions.create(
-#             model="gpt-4.1-mini",
-#             messages=[
-#                 {"role": "system", "content": system_msg},
-#                 {"role": "user", "content": user_msg},
-#             ],
-#             temperature=0.2,
-#         )
-#         return completion.choices[0].message.content
-#     except Exception as e:
-#         # Може попрецизно: openai.APITimeoutError, openai.APIConnectionError итн.
-#         return f"Грешка при повик кон LLM: {e}"
-
-def ask_llm_with_context(question, context, language="mk"):
-    """
-    Вика OpenAI модел и враќа одговор базиран на контекстот од логови.
-    """
-    if not client:
-        return "Немаш поставено OPENAI_API_KEY на серверот."
-
-    system_msg = (
-        "Ти си асистент за безбедност и систем мониторинг. "
-        "Одговараш базирано ИСКЛУЧИВО на дадените логови што ти се дадени. "
-        "Типови редови во логовите:\n"
-        "- [SYSMON] ... Sysmon безбедносни настани.\n"
-        "- [PERF] ... Општи перформанси (CPU, RAM, диск, мрежа).\n"
-        "- [PROC] ... Информации за поединечни процеси: PID, име, CPU%, RAM MB.\n"
-        "Кога корисникот прашува за процеси и нивна потрошувачка, "
-        "СЕКОГАШ користи ги [PROC] редовите. "
-        "Никогаш не кажувај дека 'нема информации за процеси' ако постои барем еден [PROC] ред. "
-        "Ако навистина НЕМА [PROC] редови, тогаш можеш да кажеш дека нема доволно податоци. "
-        "Објаснувај кратко и јасно."
-    )
-
-    user_msg = f"Прашање: {question}\n\nЛогови:\n{context or 'Нема логови.'}"
-
-    try:
-        print("[LLM] Calling OpenAI…")
-        completion = client.chat.completions.create(
-            model="gpt-4.1-mini",
-            messages=[
-                {"role": "system", "content": system_msg},
-                {"role": "user", "content": user_msg},
-            ],
-            temperature=0.2,
-        )
-        print("[LLM] Got response")
-        return completion.choices[0].message.content
-
-    except Exception as e:
-        print("[LLM] ERROR:", e)
-        return f"Грешка при повик кон LLM: {e}"
-
-
-
-#
-# def ask_llm_with_context(question, context, language="mk"):
-#     payload = {
-#         "model": "deepseek-r1:1.5b",
-#         "prompt": f"Прашање: {question}\n\nКонтекст:\n{context}",
-#         "stream": False
-#     }
-#
-#     try:
-#         r = requests.post("http://localhost:11434/api/generate", json=payload)
-#         r.raise_for_status()
-#         data = r.json()
-#         return data.get("response", "")
-#     except Exception as e:
-#         return f"Грешка при повик кон Ollama: {e}"
-
-
-@app.route('/api/export/<computer_name>')
-def export_computer_data(computer_name):
-    """Експортирај ги сите податоци за еден компјутер"""
-    data = {}
-
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-
-    # Основни информации за компјутерот
-    c.execute('''SELECT * FROM computers WHERE name = ?''', (computer_name,))
-    columns = [description[0] for description in c.description]
-    computer_data = c.fetchone()
-
-    if computer_data:
-        data['computer'] = dict(zip(columns, computer_data))
-
-        # Историја
-        computer_id = computer_data[0]
-        c.execute('''SELECT * FROM computer_history WHERE computer_id = ? ORDER BY timestamp''', (computer_id,))
-        data['history'] = [dict(zip([d[0] for d in c.description], row)) for row in c.fetchall()]
-
-        # Sysmon настани
-        c.execute('''SELECT * FROM sysmon_events WHERE computer_id = ? ORDER BY timestamp''', (computer_id,))
-        data['sysmon_events'] = [dict(zip([d[0] for d in c.description], row)) for row in c.fetchall()]
-
-        # Процеси
-        c.execute('''SELECT * FROM computer_processes WHERE computer_id = ? ORDER BY timestamp''', (computer_id,))
-        data['processes'] = [dict(zip([d[0] for d in c.description], row)) for row in c.fetchall()]
-
-        # Мрежни конекции
-        c.execute('''SELECT * FROM network_connections WHERE computer_id = ? ORDER BY timestamp''', (computer_id,))
-        data['network_connections'] = [dict(zip([d[0] for d in c.description], row)) for row in c.fetchall()]
-
-    conn.close()
-
-    # Креирај JSON одговор
-    from flask import Response
-    response = Response(
-        json.dumps(data, indent=2, default=str),
-        mimetype='application/json',
-        headers={'Content-Disposition': f'attachment; filename={computer_name}_export.json'}
-    )
-
-    return response
-
-
-@app.route('/ping')
-def ping():
-    return jsonify({
-        'status': 'alive',
-        'server_time': datetime.now().isoformat(),
-        'version': '2.0_sysmon',
-        'database': DB_FILE
-    })
-
-
-def get_local_ip():
-    try:
-        s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
-        s.connect(("8.8.8.8", 80))
-        local_ip = s.getsockname()[0]
-        s.close()
-        return local_ip
-    except:
-        return "127.0.0.1"
-
-
-def cleanup_old_data():
-    """Чисти стари податоци од базата (стари од 30 дена)"""
-    while True:
-        time.sleep(3600)  # Чисти на секој час
-        try:
-            conn = sqlite3.connect(DB_FILE)
-            c = conn.cursor()
-
-            cutoff_date = (datetime.now() - timedelta(days=30)).isoformat()
-
-            # Избриши стари записи
-            c.execute("DELETE FROM computer_history WHERE timestamp < ?", (cutoff_date,))
-            c.execute("DELETE FROM computer_processes WHERE timestamp < ?", (cutoff_date,))
-            c.execute("DELETE FROM sysmon_events WHERE timestamp < ?", (cutoff_date,))
-            c.execute("DELETE FROM network_connections WHERE timestamp < ?", (cutoff_date,))
-
-            conn.commit()
-            conn.close()
-
-            print(f"[Cleanup] Избришани стари записи пред {cutoff_date}")
-
-        except Exception as e:
-            print(f"[Cleanup] Грешка: {e}")
-
-import time
-@app.route("/api/chat", methods=["POST"])
-def api_chat():
-    try:
-        t0 = time.time()
-        data = request.get_json(force=True) or {}
-        question = data.get("question", "").strip()
-        computer_name = data.get("computer_name") or None
-
-        if not question:
-            return jsonify({"error": "No question provided"}), 400
-
-        context = build_rag_context(question, computer_name=computer_name)
-        t1 = time.time()
-
-        answer = ask_llm_with_context(question, context)
-        t2 = time.time()
-
-        print(f"[CHAT] build_rag_context: {t1 - t0:.2f}s, LLM: {t2 - t1:.2f}s")
-
-        return jsonify({"answer": answer})
-    except Exception as e:
-        traceback.print_exc()
-        return jsonify({"error": str(e)}), 500
-
-
-@app.route('/api/computer/<computer_name>/sysmon')
-def get_sysmon_processes(computer_name):
-    """Добиј Sysmon процеси за компјутер"""
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-
-    # Прво најди го computer_id
-    c.execute('SELECT id FROM computers WHERE name = ?', (computer_name,))
-    result = c.fetchone()
-
-    if not result:
-        conn.close()
-        return jsonify({"error": "Computer not found"}), 404
-
-    computer_id = result[0]
-
-    # Земaj ги Sysmon процесите (последни 100)
-    c.execute('''SELECT 
-                 event_id, 
-                 event_type, 
-                 message, 
-                 timestamp, 
-                 details
-                 FROM sysmon_events 
-                 WHERE computer_id = ? 
-                 ORDER BY timestamp DESC LIMIT 100''', (computer_id,))
-
-    processes = []
-    for row in c.fetchall():
-        try:
-            details = json.loads(row[4]) if row[4] else {}
-        except:
-            details = {}
-
-        processes.append({
-            'process_id': row[0],  # Event ID како PID
-            'process_name': row[1],  # Event type како име
-            'timestamp': row[3],
-            'message': row[2],
-            'details': details
-        })
-
-    conn.close()
-
-    return jsonify({
-        'computer_name': computer_name,
-        'processes': processes,
-        'count': len(processes)
-    })
-
-
-@app.route('/api/computer/<computer_name>/network')
-def get_network_connections(computer_name):
-    """Добиј мрежни конекции за компјутер"""
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-
-    # Прво најди го computer_id
-    c.execute('SELECT id FROM computers WHERE name = ?', (computer_name,))
-    result = c.fetchone()
-
-    if not result:
-        conn.close()
-        return jsonify({"error": "Computer not found"}), 404
-
-    computer_id = result[0]
-
-    # Земaj ги мрежните конекции (последни 100)
-    c.execute('''SELECT 
-                 pid, 
-                 process_name, 
-                 local_address, 
-                 remote_address,
-                 status, 
-                 timestamp
-                 FROM network_connections 
-                 WHERE computer_id = ? 
-                 ORDER BY timestamp DESC LIMIT 100''', (computer_id,))
-
-    connections = []
-    for row in c.fetchall():
-        # Парсирај IP и порта
-        local = row[2] or "N/A"
-        remote = row[3] or "N/A"
-
-        connections.append({
-            'pid': row[0],
-            'process_name': row[1] or 'Unknown',
-            'local_address': local,
-            'remote_address': remote,
-            'local_port': local.split(':')[-1] if ':' in local else '',
-            'remote_port': remote.split(':')[-1] if ':' in remote else '',
-            'protocol': 'TCP' if ':443' in local or ':80' in local else 'Unknown',
-            'state': row[4] or 'ESTABLISHED',
-            'timestamp': row[5]
-        })
-
-    conn.close()
-
-    return jsonify({
-        'computer_name': computer_name,
-        'connections': connections,
-        'count': len(connections)
-    })
-
-
-@app.route('/api/computer/<computer_name>/detailed-sysmon')
-def get_detailed_sysmon(computer_name):
-    """Добиј детални Sysmon процеси со повеќе информации"""
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-
-    c.execute('SELECT id FROM computers WHERE name = ?', (computer_name,))
-    result = c.fetchone()
-
-    if not result:
-        conn.close()
-        return jsonify({"error": "Computer not found"}), 404
-
-    computer_id = result[0]
-
-    c.execute('''SELECT event_id, event_type, message, timestamp, details
-                 FROM sysmon_events 
-                 WHERE computer_id = ? 
-                 ORDER BY timestamp DESC LIMIT 50''', (computer_id,))
-
-    detailed_processes = []
-
-    for row in c.fetchall():
-        event_id = row[0]
-        event_type = row[1]
-        message = row[2]
-        timestamp = row[3]
-        details_str = row[4]
-
-        # Пробај да го парсираш details JSON
-        try:
-            details = json.loads(details_str) if details_str else {}
-        except:
-            details = {}
-
-        # Екстрактирај информации од details
-        process_info = {
-            'event_id': event_id,
-            'event_type': event_type,
-            'timestamp': timestamp,
-            'message': message,
-            'process_name': details.get('ProcessName', 'Unknown'),
-            'process_id': details.get('ProcessId', event_id),
-            'command_line': details.get('CommandLine', ''),
-            'parent_process': details.get('ParentProcessName', ''),
-            'parent_pid': details.get('ParentProcessId', ''),
-            'user': details.get('User', ''),
-            'details': details
-        }
-
-        # Додади дополнителни полиња за различни типови на настани
-        if event_id in [3, 22]:  # Network connection or DNS
-            process_info['source_ip'] = details.get('SourceIp', '')
-            process_info['dest_ip'] = details.get('DestinationIp', '')
-            process_info['dest_port'] = details.get('DestinationPort', '')
-
-        detailed_processes.append(process_info)
-
-    conn.close()
-
-    return jsonify({
-        'computer_name': computer_name,
-        'processes': detailed_processes,
-        'count': len(detailed_processes)
-    })
-@app.route("/api/admin/login", methods=["POST"])
-def admin_login():
-    data = request.get_json(force=True) or {}
-    key = (data.get("admin_key") or "").strip()
-    if not ADMIN_KEY or key != ADMIN_KEY:
-        return jsonify({"error": "Unauthorized"}), 401
-
-    session_token = secrets.token_urlsafe(32)
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-    c.execute("INSERT INTO admin_sessions(token, created_at) VALUES(?, datetime('now'))", (session_token,))
-    conn.commit()
-    conn.close()
-
-    return jsonify({"ok": True, "session": session_token})
-
-
-@app.route("/api/admin/environments", methods=["GET"])
-def admin_list_envs():
-    if not require_admin_session():
-        return jsonify({"error": "Unauthorized"}), 401
-
-    conn = sqlite3.connect(DB_FILE)
-    c = conn.cursor()
-    c.execute("SELECT name FROM environments ORDER BY name")
-    envs = [r[0] for r in c.fetchall()]
-    conn.close()
-
+    if not envs:
+        envs = ["default"]
     return jsonify({"environments": envs})
 
 
 @app.route("/api/admin/environments", methods=["POST"])
+@require_tenant_admin()
 def admin_create_env():
-    if not require_admin_session():
-        return jsonify({"error": "Unauthorized"}), 401
-
-    data = request.get_json(force=True) or {}
+    tenant_id = request.user["tenant_id"]
+    data = request.get_json(force=True, silent=True) or {}
     name = (data.get("name") or "").strip()
     if not name:
         return jsonify({"error": "Missing env name"}), 400
 
-    conn = sqlite3.connect(DB_FILE)
+    conn = db()
     c = conn.cursor()
     try:
-        c.execute("INSERT INTO environments(name, created_at) VALUES(?, datetime('now'))", (name,))
+        c.execute(
+            "INSERT INTO environments(tenant_id, name, created_at) VALUES(?, ?, datetime('now'))",
+            (tenant_id, name),
+        )
         conn.commit()
     except Exception as e:
@@ -2001,22 +540,19 @@
         return jsonify({"error": str(e)}), 400
     conn.close()
-
     return jsonify({"ok": True, "name": name})
 
 
 @app.route("/api/admin/tokens", methods=["POST"])
+@require_tenant_admin()
 def admin_generate_token():
-    if not require_admin_session():
-        return jsonify({"error": "Unauthorized"}), 401
-
-    data = request.get_json(force=True) or {}
+    tenant_id = request.user["tenant_id"]
+    data = request.get_json(force=True, silent=True) or {}
     env = (data.get("env") or "").strip()
     if not env:
         return jsonify({"error": "Missing env"}), 400
 
-    conn = sqlite3.connect(DB_FILE)
+    conn = db()
     c = conn.cursor()
-
-    c.execute("SELECT 1 FROM environments WHERE name = ?", (env,))
+    c.execute("SELECT 1 FROM environments WHERE tenant_id=? AND name=? LIMIT 1", (tenant_id, env))
     if not c.fetchone():
         conn.close()
@@ -2025,8 +561,7 @@
     token = secrets.token_urlsafe(32)
     c.execute("""
-        INSERT INTO env_tokens(env_name, token, created_at, expires_at)
-        VALUES(?, ?, datetime('now'), datetime('now', '+15 minutes'))
-    """, (env, token))
-
+            INSERT INTO env_tokens(tenant_id, env_name, token, created_at, expires_at)
+            VALUES(?, ?, ?, datetime('now'), datetime('now', '+90 days'))
+        """, (tenant_id, env, token))
     conn.commit()
     conn.close()
@@ -2034,27 +569,542 @@
     return jsonify({"ok": True, "env": env, "token": token})
 
-if __name__ == '__main__':
-    init_database()
-    init_admin_tables()
-
-
-    # Стартувај cleanup thread
+
+# ----------------------------
+# Agent endpoint
+# ----------------------------
+@app.route("/receive", methods=["POST"])
+def receive_data():
+    try:
+        data = request.get_json(force=True, silent=True) or {}
+        if not data:
+            return jsonify({"error": "No data"}), 400
+
+        env_name, tenant_id = get_env_from_token(request)
+        if not env_name or not tenant_id:
+            return jsonify({"error": "Missing or invalid X-Env-Token"}), 401
+
+        info = data.get("info") or {}
+        computer_name = info.get("computer_name")
+        if not computer_name:
+            return jsonify({"error": "Missing info.computer_name"}), 400
+
+        now_iso = datetime.now().isoformat()
+        security_data = data.get("security_data") or {}
+
+        conn = db()
+        c = conn.cursor()
+
+        # Find by (tenant_id + name)
+        c.execute("SELECT id FROM computers WHERE tenant_id=? AND name=? LIMIT 1", (tenant_id, computer_name))
+        row = c.fetchone()
+
+        if row:
+            computer_id = row["id"]
+            c.execute("""
+                    UPDATE computers
+                    SET user=?, ip=?, os=?, last_seen=?, sysmon_available=?, env_name=?
+                    WHERE id=? AND tenant_id=?
+                """, (
+                info.get("user"),
+                info.get("ip_address"),
+                info.get("os"),
+                now_iso,
+                int(info.get("is_sysmon_available", 0) or 0),
+                env_name,
+                computer_id,
+                tenant_id,
+            ))
+        else:
+            c.execute("""
+                    INSERT INTO computers(tenant_id, env_name, name, user, ip, os, first_seen, last_seen, sysmon_available)
+                    VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)
+                """, (
+                tenant_id,
+                env_name,
+                computer_name,
+                info.get("user"),
+                info.get("ip_address"),
+                info.get("os"),
+                now_iso,
+                now_iso,
+                int(info.get("is_sysmon_available", 0) or 0),
+            ))
+            computer_id = c.lastrowid
+
+        # history row
+        c.execute("""
+                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),
+            float(info.get("ram_usage") or 0),
+            float(info.get("disk_usage") or 0),
+            float(info.get("network_sent_mb") or 0),
+            float(info.get("network_recv_mb") or 0),
+            info.get("timestamp") or now_iso,
+        ))
+
+        # processes
+        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(?, ?, ?, ?, ?, ?, ?, ?)
+                """, (
+                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(?, ?, ?, ?, ?, ?)
+                """, (
+                computer_id,
+                ev.get("event_id"),
+                ev.get("event_type", "Unknown"),
+                ev.get("message", ""),
+                ev.get("timestamp") or (info.get("timestamp") or now_iso),
+                json.dumps(ev, ensure_ascii=False),
+            ))
+            sysmon_count += 1
+
+        # network connections
+        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(?, ?, ?, ?, ?, ?, ?)
+                """, (
+                computer_id,
+                nc.get("pid"),
+                nc.get("local_address"),
+                nc.get("remote_address"),
+                nc.get("status"),
+                nc.get("process_name"),
+                info.get("timestamp") or now_iso,
+            ))
+
+        conn.commit()
+        conn.close()
+
+        # optional JSON archive
+        try:
+            save_json_file(data)
+        except Exception:
+            pass
+
+        return jsonify({
+            "ok": True,
+            "computer_id": computer_id,
+            "env": env_name,
+            "tenant_id": tenant_id,
+            "sysmon_events_saved": sysmon_count,
+            "server_time": now_iso,
+        })
+
+    except Exception as e:
+        traceback.print_exc()
+        return jsonify({"error": str(e)}), 500
+
+
+# ----------------------------
+# Dashboard API (tenant scoped)
+# ----------------------------
+@app.route("/api/computers", methods=["GET"])
+@require_user()
+def api_computers():
+    tenant_id = request.user["tenant_id"]
+    env = request.headers.get("X-Env", "default")
+
+    conn = db()
+    c = conn.cursor()
+    c.execute("""
+            SELECT id, name, user, ip, os, first_seen, last_seen, sysmon_available
+            FROM computers
+            WHERE tenant_id=? AND env_name=?
+            ORDER BY last_seen DESC
+        """, (tenant_id, env))
+    rows = c.fetchall()
+
+    computers = []
+    for r in rows:
+        cid = r["id"]
+
+        c.execute("""
+                SELECT COUNT(*) AS n
+                FROM computer_history
+                WHERE computer_id=? AND timestamp > datetime('now','-24 hours')
+            """, (cid,))
+        recent_logs = int(c.fetchone()["n"] or 0)
+
+        c.execute("""
+                SELECT COUNT(*) AS n
+                FROM sysmon_events
+                WHERE computer_id=? AND timestamp > datetime('now','-24 hours')
+            """, (cid,))
+        recent_sysmon = int(c.fetchone()["n"] or 0)
+
+        c.execute("""
+                SELECT cpu_usage, ram_usage, timestamp
+                FROM computer_history
+                WHERE computer_id=?
+                ORDER BY timestamp DESC
+                LIMIT 5
+            """, (cid,))
+        metrics = c.fetchall()
+        avg_cpu = round(sum(m["cpu_usage"] for m in metrics) / len(metrics), 1) if metrics else 0.0
+        avg_ram = round(sum(m["ram_usage"] for m in metrics) / len(metrics), 1) if metrics else 0.0
+
+        status = "offline"
+        status_color = "gray"
+        try:
+            last_seen = r["last_seen"]
+            if last_seen:
+                dt = datetime.fromisoformat(
+                    last_seen.replace("Z", "+00:00")) if "T" in last_seen else datetime.fromisoformat(last_seen)
+                diff = (datetime.now() - dt).total_seconds()
+                if diff < 60:
+                    status, status_color = "online", "green"
+                elif diff < 300:
+                    status, status_color = "idle", "orange"
+        except Exception:
+            pass
+
+        computers.append({
+            "name": r["name"],
+            "user": r["user"],
+            "ip": r["ip"],
+            "os": r["os"],
+            "first_seen": r["first_seen"],
+            "last_seen": r["last_seen"],
+            "sysmon_available": bool(r["sysmon_available"]),
+            "recent_logs": recent_logs,
+            "recent_sysmon": recent_sysmon,
+            "avg_cpu": avg_cpu,
+            "avg_ram": avg_ram,
+            "status": status,
+            "status_color": status_color,
+        })
+
+    conn.close()
+    return jsonify(computers)
+
+
+@app.route("/api/stats", methods=["GET"])
+@require_user()
+def api_stats():
+    tenant_id = request.user["tenant_id"]
+
+    conn = db()
+    c = conn.cursor()
+
+    c.execute("""
+            SELECT COUNT(*) AS n
+            FROM sysmon_events s
+            JOIN computers c2 ON c2.id = s.computer_id
+            WHERE s.timestamp > datetime('now','-24 hours')
+              AND c2.tenant_id = ?
+        """, (tenant_id,))
+    total_sysmon = int(c.fetchone()["n"] or 0)
+
+    c.execute("""
+            SELECT COUNT(*) AS n
+            FROM network_connections n
+            JOIN computers c2 ON c2.id = n.computer_id
+            WHERE n.timestamp > datetime('now','-24 hours')
+              AND c2.tenant_id = ?
+        """, (tenant_id,))
+    total_net = int(c.fetchone()["n"] or 0)
+
+    conn.close()
+    return jsonify({
+        "total_sysmon_events": total_sysmon,
+        "total_network_connections": total_net,
+        "server_time": datetime.now().isoformat(),
+    })
+
+
+@app.route("/api/computer/<computer_name>", methods=["GET"])
+@require_user()
+def api_computer_details(computer_name):
+    tenant_id = request.user["tenant_id"]
+
+    conn = db()
+    c = conn.cursor()
+    c.execute("""
+            SELECT id, name, user, ip, os, first_seen, last_seen, env_name
+            FROM computers
+            WHERE tenant_id=? AND name=?
+            LIMIT 1
+        """, (tenant_id, computer_name))
+    comp = c.fetchone()
+    if not comp:
+        conn.close()
+        return jsonify({"error": "Computer not found"}), 404
+
+    computer_id = comp["id"]
+
+    c.execute("SELECT COUNT(*) AS n FROM computer_history WHERE computer_id=?", (computer_id,))
+    total_logs = int(c.fetchone()["n"] or 0)
+
+    c.execute("""
+            SELECT cpu_usage, ram_usage, disk_usage, network_sent_mb, network_recv_mb, timestamp
+            FROM computer_history
+            WHERE computer_id=?
+            ORDER BY timestamp DESC
+            LIMIT 100
+        """, (computer_id,))
+    history = [dict(r) for r in c.fetchall()]
+    current_metrics = history[0] if history else {}
+
+    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,))
+    processes = [dict(r) for r in c.fetchall()]
+
+    c.execute("""
+            SELECT event_id, event_type, message, timestamp, details
+            FROM sysmon_events
+            WHERE computer_id=?
+            ORDER BY timestamp DESC
+            LIMIT 200
+        """, (computer_id,))
+    sysmon = []
+    for r in c.fetchall():
+        d = {}
+        try:
+            d = json.loads(r["details"]) if r["details"] else {}
+        except Exception:
+            d = {}
+        sysmon.append({
+            "event_id": r["event_id"],
+            "event_type": r["event_type"],
+            "message": r["message"],
+            "timestamp": r["timestamp"],
+            "details": d,
+        })
+
+    c.execute("""
+            SELECT pid, process_name, local_address, remote_address, status, timestamp
+            FROM network_connections
+            WHERE computer_id=?
+            ORDER BY timestamp DESC
+            LIMIT 100
+        """, (computer_id,))
+    net = [dict(r) for r in c.fetchall()]
+
+    conn.close()
+
+    return jsonify({
+        "computer": {
+            "id": comp["id"],
+            "name": comp["name"],
+            "user": comp["user"],
+            "ip": comp["ip"],
+            "os": comp["os"],
+            "first_seen": comp["first_seen"],
+            "last_seen": comp["last_seen"],
+            "env_name": comp["env_name"],
+            "total_logs": total_logs,
+        },
+        "history": history,
+        "current_metrics": current_metrics,
+        "recent_processes": processes,
+        "sysmon_events": sysmon,
+        "network_connections": net,
+    })
+
+
+@app.route("/api/export/<computer_name>", methods=["GET"])
+@require_user()
+def api_export(computer_name):
+    tenant_id = request.user["tenant_id"]
+
+    conn = db()
+    c = conn.cursor()
+    c.execute("""
+            SELECT *
+            FROM computers
+            WHERE tenant_id=? AND name=?
+            LIMIT 1
+        """, (tenant_id, computer_name))
+    comp = c.fetchone()
+    if not comp:
+        conn.close()
+        return jsonify({"error": "Computer not found"}), 404
+
+    computer_id = comp["id"]
+    out = {"computer": dict(comp)}
+
+    c.execute("SELECT * FROM computer_history WHERE computer_id=? ORDER BY timestamp", (computer_id,))
+    out["history"] = [dict(r) for r in c.fetchall()]
+
+    c.execute("SELECT * FROM sysmon_events WHERE computer_id=? ORDER BY timestamp", (computer_id,))
+    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 network_connections WHERE computer_id=? ORDER BY timestamp", (computer_id,))
+    out["network_connections"] = [dict(r) for r in c.fetchall()]
+
+    conn.close()
+
+    return Response(
+        json.dumps(out, indent=2, default=str, ensure_ascii=False),
+        mimetype="application/json",
+        headers={"Content-Disposition": f"attachment; filename={computer_name}_export.json"},
+    )
+
+
+# ----------------------------
+# Simple RAG chat
+# ----------------------------
+def build_rag_context(tenant_id: int, question: str, computer_name=None, limit_per_table=10):
+    conn = db()
+    c = conn.cursor()
+
+    params = [tenant_id]
+    comp_clause = ""
+    if computer_name:
+        comp_clause = "AND c2.name = ?"
+        params.append(computer_name)
+
+    # sysmon
+    c.execute(f"""
+            SELECT s.timestamp, s.event_id, s.event_type, s.message
+            FROM sysmon_events s
+            JOIN computers c2 ON c2.id = s.computer_id
+            WHERE c2.tenant_id = ? {comp_clause}
+            ORDER BY s.timestamp DESC
+            LIMIT ?
+        """, (*params, limit_per_table))
+    sysmon_rows = c.fetchall()
+
+    # perf
+    c.execute(f"""
+            SELECT h.timestamp, h.cpu_usage, h.ram_usage, h.disk_usage, h.network_sent_mb, h.network_recv_mb
+            FROM computer_history h
+            JOIN computers c2 ON c2.id = h.computer_id
+            WHERE c2.tenant_id = ? {comp_clause}
+            ORDER BY h.timestamp DESC
+            LIMIT ?
+        """, (*params, limit_per_table))
+    perf_rows = c.fetchall()
+
+    # proc
+    c.execute(f"""
+            SELECT p.timestamp, p.pid, p.name, p.cpu_percent, p.memory_mb
+            FROM computer_processes p
+            JOIN computers c2 ON c2.id = p.computer_id
+            WHERE c2.tenant_id = ? {comp_clause}
+            ORDER BY p.timestamp DESC
+            LIMIT ?
+        """, (*params, limit_per_table))
+    proc_rows = c.fetchall()
+
+    conn.close()
+
+    lines = []
+    for r in sysmon_rows:
+        lines.append(f"[SYSMON] {r['timestamp']} | Event {r['event_id']} ({r['event_type']}): {r['message']}")
+    for r in perf_rows:
+        lines.append(
+            f"[PERF] {r['timestamp']} | CPU {r['cpu_usage']}% | RAM {r['ram_usage']}% | Disk {r['disk_usage']}% | "
+            f"Net sent {r['network_sent_mb']}MB / recv {r['network_recv_mb']}MB"
+        )
+    for r in proc_rows:
+        lines.append(
+            f"[PROC] {r['timestamp']} | PID {r['pid']} | {r['name']} | CPU {r['cpu_percent']}% | RAM {r['memory_mb']}MB"
+        )
+
+    return "\n".join(lines)
+
+
+def ask_llm_with_context(question, context):
+    if not client:
+        return "Немаш поставено OPENAI_API_KEY на серверот."
+
+    system_msg = (
+        "Ти си асистент за безбедност и систем мониторинг. "
+        "Одговараш базирано ИСКЛУЧИВО на дадените логови. "
+        "Ако нема доволно податоци, кажи дека нема доволно информации. "
+        "Кога корисникот прашува за процеси и нивна потрошувачка, користи ги [PROC] редовите."
+    )
+
+    completion = client.chat.completions.create(
+        model="gpt-4.1-mini",
+        messages=[
+            {"role": "system", "content": system_msg},
+            {"role": "user", "content": f"Прашање: {question}\n\nЛогови:\n{context or 'Нема логови.'}"},
+        ],
+        temperature=0.2,
+    )
+    return completion.choices[0].message.content
+
+
+@app.route("/api/chat", methods=["POST"])
+@require_user()
+def api_chat():
+    try:
+        tenant_id = request.user["tenant_id"]
+        data = request.get_json(force=True, silent=True) or {}
+        question = (data.get("question") or "").strip()
+        computer_name = data.get("computer_name") or None
+
+        if not question:
+            return jsonify({"error": "No question provided"}), 400
+
+        ctx = build_rag_context(tenant_id, question, computer_name=computer_name, limit_per_table=10)
+        ans = ask_llm_with_context(question, ctx)
+        return jsonify({"answer": ans or ""}), 200
+
+    except Exception as e:
+        traceback.print_exc()
+        return jsonify({"error": str(e)}), 500
+
+
+# ----------------------------
+# Misc
+# ----------------------------
+@app.route("/ping")
+def ping():
+    return jsonify({
+        "status": "alive",
+        "server_time": datetime.now().isoformat(),
+        "database": DB_FILE,
+        "cors_origins": ALLOWED_ORIGINS,
+    })
+
+
+@app.route("/")
+def root():
+    return jsonify({
+        "ok": True,
+        "service": "netIntel server",
+        "hint": "frontend should call /api/* endpoints",
+    })
+
+
+if __name__ == "__main__":
+    init_db()
+
     cleanup_thread = threading.Thread(target=cleanup_old_data, daemon=True)
     cleanup_thread.start()
 
-    local_ip = get_local_ip()
-
-    print("\n" + "=" * 70)
-    print("🚀 ENHANCED LAN LOG SERVER со Sysmon")
-    print("=" * 70)
-    print(f"🌐 Server IP: {local_ip}:5555")
-    print(f"📊 Dashboard: http://{local_ip}:5555/")
-    print(f"📊 Alternative: http://localhost:5555/")
-    print(f"🏥 Health check: http://{local_ip}:5555/ping")
-    print("\n🛡️  Sysmon monitoring е активирано")
-    print("✅ Кликни на секој компјутер за детални информации")
-    print("✅ Сите Sysmon настани се прикажани во табла")
-    print("✅ Кликни на секој настан за детали")
-    print("=" * 70 + "\n")
-
-    app.run(host='0.0.0.0', port=5555, debug=False, threaded=True)
+    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)
