mentedb_server/
console.rs1use axum::response::Html;
8
9const PAGE: &str = r##"<!doctype html>
10<html lang="en">
11<head>
12<meta charset="utf-8" />
13<meta name="viewport" content="width=device-width, initial-scale=1" />
14<title>MenteDB console</title>
15<style>
16 :root { color-scheme: dark; }
17 * { box-sizing: border-box; }
18 body { margin: 0; background: #0a0a0b; color: #e4e4e7; font: 14px/1.5 ui-sans-serif, system-ui, -apple-system, sans-serif; }
19 header { padding: 18px 28px; border-bottom: 1px solid #27272a; display: flex; align-items: center; gap: 12px; }
20 header h1 { font-size: 16px; font-weight: 600; margin: 0; }
21 .dot { width: 10px; height: 10px; border-radius: 50%; background: #52525b; }
22 .dot.up { background: #34d399; box-shadow: 0 0 10px rgba(52,211,153,.6); }
23 .dot.down { background: #f87171; }
24 nav { display: flex; gap: 4px; padding: 0 22px; border-bottom: 1px solid #27272a; }
25 nav button { background: none; border: none; color: #a1a1aa; padding: 12px 14px; font: inherit; cursor: pointer; border-bottom: 2px solid transparent; }
26 nav button.active { color: #e4e4e7; border-bottom-color: #34d399; }
27 main { padding: 24px 28px; max-width: 1200px; margin: 0 auto; }
28 .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
29 .card { border: 1px solid #27272a; background: #131316; border-radius: 12px; padding: 16px 18px; }
30 .card .label { color: #a1a1aa; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
31 .card .value { font-size: 26px; font-weight: 600; margin-top: 6px; font-variant-numeric: tabular-nums; }
32 .card .value.ok { color: #34d399; }
33 .muted { color: #71717a; font-size: 12px; margin-top: 20px; }
34 a { color: #34d399; text-decoration: none; }
35 .sub { color: #71717a; font-size: 12px; }
36 .row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-bottom: 14px; }
37 input, select, button.act { background: #131316; border: 1px solid #27272a; color: #e4e4e7; border-radius: 8px; padding: 8px 10px; font: inherit; }
38 button.act { cursor: pointer; }
39 button.act:hover { border-color: #3f3f46; }
40 table { width: 100%; border-collapse: collapse; font-size: 13px; }
41 th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid #1f1f23; vertical-align: top; }
42 th { color: #a1a1aa; font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
43 td.content { max-width: 520px; }
44 .pill { font-size: 11px; padding: 1px 7px; border-radius: 999px; background: #1f1f23; color: #a1a1aa; }
45 .mono { font-family: ui-monospace, SFMono-Regular, monospace; color: #71717a; font-size: 12px; }
46 .del { color: #f87171; cursor: pointer; background: none; border: none; font: inherit; }
47 .hidden { display: none; }
48</style>
49</head>
50<body>
51<header>
52 <span id="dot" class="dot"></span>
53 <h1>MenteDB console</h1>
54 <span id="uptime" class="sub"></span>
55</header>
56<nav>
57 <button id="tab-health" class="active" onclick="showTab('health')">Health</button>
58 <button id="tab-memories" onclick="showTab('memories')">Memories</button>
59</nav>
60<main>
61 <section id="health">
62 <div class="grid" id="grid"></div>
63 <p class="muted">Live from <a href="/metrics">/metrics</a>, refreshed every 2s. Aggregate only, no per-account data. For history, scrape with Prometheus and import the Grafana dashboard.</p>
64 </section>
65 <section id="memories" class="hidden">
66 <div class="row">
67 <input id="key" type="password" placeholder="admin key (x-api-key)" style="width:220px" />
68 <input id="q" placeholder="search content" style="width:200px" />
69 <select id="type">
70 <option value="">any type</option>
71 <option>episodic</option><option>semantic</option><option>procedural</option>
72 <option>antipattern</option><option>reasoning</option><option>correction</option>
73 </select>
74 <input id="agent" placeholder="agent uuid (optional)" style="width:200px" />
75 <button class="act" onclick="loadMem(0)">Load</button>
76 <span id="memmsg" class="sub"></span>
77 </div>
78 <table><thead><tr><th>Content</th><th>Type</th><th>Agent</th><th>Created</th><th></th></tr></thead>
79 <tbody id="rows"></tbody></table>
80 <div class="row" style="margin-top:14px">
81 <button class="act" id="prev" onclick="pageBy(-1)">Prev</button>
82 <button class="act" id="next" onclick="pageBy(1)">Next</button>
83 <span id="pager" class="sub"></span>
84 </div>
85 </section>
86</main>
87<script>
88function showTab(t) {
89 for (const n of ["health","memories"]) {
90 document.getElementById(n).classList.toggle("hidden", n !== t);
91 document.getElementById("tab-"+n).classList.toggle("active", n === t);
92 }
93}
94// ---- Health ----
95function parse(text) {
96 const m = {};
97 for (const line of text.split("\n")) {
98 if (!line || line[0] === "#") continue;
99 const sp = line.lastIndexOf(" ");
100 if (sp < 0) continue;
101 const key = line.slice(0, sp).trim();
102 const val = parseFloat(line.slice(sp + 1));
103 if (!isFinite(val)) continue;
104 const name = key.indexOf("{") >= 0 ? key.slice(0, key.indexOf("{")) : key;
105 m[name] = (m[name] || 0) + val;
106 }
107 return m;
108}
109function fmtDur(s){s=Math.floor(s);const d=Math.floor(s/86400);s%=86400;const h=Math.floor(s/3600);s%=3600;const mi=Math.floor(s/60);return (d?d+"d ":"")+(h?h+"h ":"")+mi+"m";}
110function fmtBytes(b){if(!b)return "-";const u=["B","KB","MB","GB","TB"];let i=0;while(b>=1024&&i<u.length-1){b/=1024;i++;}return b.toFixed(1)+" "+u[i];}
111let prev=null, prevT=0;
112function card(l,v,c){return `<div class="card"><div class="label">${l}</div><div class="value ${c||""}">${v}</div></div>`;}
113async function tick() {
114 let m, ok = true;
115 try { m = parse(await (await fetch("/metrics",{cache:"no-store"})).text()); } catch { ok=false; m={}; }
116 const up = ok && m["mentedb_up"] === 1;
117 document.getElementById("dot").className = "dot " + (up?"up":"down");
118 document.getElementById("uptime").textContent = up ? "up "+fmtDur(m["mentedb_uptime_seconds"]||0) : "unreachable";
119 const now = Date.now()/1000; let reqRate=null, cpu=null;
120 if (prev && now>prevT){const dt=now-prevT;
121 if(m["mentedb_http_requests_total"]!=null&&prev["mentedb_http_requests_total"]!=null) reqRate=Math.max(0,(m["mentedb_http_requests_total"]-prev["mentedb_http_requests_total"])/dt);
122 if(m["process_cpu_seconds_total"]!=null&&prev["process_cpu_seconds_total"]!=null) cpu=Math.max(0,(m["process_cpu_seconds_total"]-prev["process_cpu_seconds_total"])/dt);
123 }
124 prev=m; prevT=now;
125 document.getElementById("grid").innerHTML = [
126 card("Status", up?"Up":"Down", up?"ok":""),
127 card("Memories stored",(m["mentedb_memory_count"]||0).toLocaleString()),
128 card("Live cluster nodes", m["mentedb_cluster_live_nodes"]!=null?m["mentedb_cluster_live_nodes"]:"-"),
129 card("Requests / sec", reqRate==null?"…":reqRate.toFixed(1)),
130 card("CPU (cores)", cpu==null?(isFinite(m["process_cpu_seconds_total"])?"…":"n/a"):cpu.toFixed(2)),
131 card("Resident memory", isFinite(m["process_resident_memory_bytes"])?fmtBytes(m["process_resident_memory_bytes"]):"n/a"),
132 ].join("");
133}
134tick(); setInterval(tick, 2000);
135// ---- Memories ----
136let offset = 0, limit = 50, total = 0;
137function esc(s){return (s||"").replace(/[&<>]/g,c=>({"&":"&","<":"<",">":">"}[c]));}
138function key(){ return document.getElementById("key").value.trim(); }
139async function loadMem(off) {
140 const k = key();
141 if (!k) { document.getElementById("memmsg").textContent = "enter the admin key"; return; }
142 sessionStorage.setItem("mdb_key", k);
143 offset = off;
144 const p = new URLSearchParams({ limit, offset });
145 const q = document.getElementById("q").value.trim(); if (q) p.set("q", q);
146 const t = document.getElementById("type").value; if (t) p.set("type", t);
147 const a = document.getElementById("agent").value.trim(); if (a) p.set("agent", a);
148 document.getElementById("memmsg").textContent = "loading…";
149 let r;
150 try { r = await fetch("/v1/admin/memories?"+p, { headers: { "x-api-key": k } }); }
151 catch { document.getElementById("memmsg").textContent = "request failed"; return; }
152 if (!r.ok) { document.getElementById("memmsg").textContent = "error "+r.status+" (check the admin key)"; return; }
153 const d = await r.json();
154 total = d.total;
155 document.getElementById("rows").innerHTML = (d.memories||[]).map(mem => {
156 const dt = mem.created_at ? new Date(mem.created_at/1000).toISOString().slice(0,16).replace("T"," ") : "";
157 const ag = (mem.agent_id||"").slice(0,8);
158 return `<tr><td class="content">${esc(mem.content)}</td><td><span class="pill">${esc(mem.memory_type)}</span></td><td class="mono">${ag}</td><td class="mono">${dt}</td><td><button class="del" onclick="del('${mem.id}')">delete</button></td></tr>`;
159 }).join("");
160 document.getElementById("memmsg").textContent = "";
161 document.getElementById("pager").textContent = `${offset+1}–${Math.min(offset+limit,total)} of ${total.toLocaleString()}`;
162 document.getElementById("prev").disabled = offset <= 0;
163 document.getElementById("next").disabled = offset+limit >= total;
164}
165function pageBy(dir){ const n = offset + dir*limit; if (n>=0 && n<total) loadMem(n); }
166async function del(id) {
167 if (!confirm("Delete this memory?")) return;
168 const r = await fetch("/v1/admin/memories/"+id, { method:"DELETE", headers: { "x-api-key": key() } });
169 if (r.ok) loadMem(offset); else alert("delete failed: "+r.status);
170}
171window.addEventListener("load", () => { const s = sessionStorage.getItem("mdb_key"); if (s) document.getElementById("key").value = s; });
172</script>
173</body>
174</html>
175"##;
176
177pub async fn handler() -> Html<&'static str> {
179 Html(PAGE)
180}