Start with one click. No complex setups or long forms.
No complexity anymore. Monitor your apps and systems.
Start free and pay as you go. We will release plans soon.
// Simple logging
fetch('https://localhost:45678/api/boxes/BOXID/logs', {
method: 'POST',
body: 'Log your message or data here'
})
// Logging objects with severity
fetch('https://localhost:45678/api/boxes/BOXID/logs', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
message: "My log message",
severity: "debug" // debug, info, warn, error or fatal
})
})