App pulse monitoring for founders
Know when important things happen in your app
Send custom events from your code and get notified when users sign up, payments fail, buttons are clicked, or cron jobs stop running.
No heavy setup
Email alerts
Built for projects of all sizes
logimoni.com/dashboard
Live Events
● LiveMyAwesomeProject
🚀
2 minutes ago
👤
8 minutes ago
💳
14 minutes ago
⚠️
21 minutes ago
Send an event. See it instantly.
Developer friendly
Works with any language.
Logimoni is just a simple HTTP endpoint. Use it from C#, JavaScript, Python, PHP, or anywhere you can send a POST request.
fetch("https://logimoni.com/api/events", {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
userKey: "usr_xxxxx",
projectKey: "prj_xxxxx",
categoryName: "user.login",
message: "A user logged in"
})
});