| ID | Timestamp | Device / Computer | Event Type | Payload |
|---|---|---|---|---|
Loading records... |
||||
Extension Snippet for Multiple Computers
Add clientId to your extension payload on each computer (e.g. 'desktop-1', 'laptop-2'). You can rename them to friendly titles anytime from this dashboard.
fetch('https://mattlogs.duckdns.org/api/ingest', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'x-api-key': 'c56d8ada87e3a5ba991e17e588f9b755'
},
body: JSON.stringify({
clientId: 'computer-2', // Unique identifier for this machine!
source: 'chrome-extension',
eventType: 'STATUS_UPDATE',
data: { status: 'healthy', memoryMB: 512 }
})
});