I have a project that is being deployed with real users and I would like to know if there is any way I can have a log to know what the user is doing, who sent some type of data…
Hi Pedro, welcome to the community
Great question!
If you want to track what your users are doing , like who submitted data, or when a specific action happened , you’ll need to set that up on the backend.
Here’s how you can think about it:
• Log actions in your backend: Most WeWeb users connect to tools like Xano, Supabase, or Airtable. These platforms let you store logs each time a user triggers an event , for example, submitting a form or updating a record.
• Use workflow logic in WeWeb: You can also trigger a backend workflow directly from the WeWeb Editor, and include user info (like ID or email) in the request payload, so it gets stored along with the action.
• Analytics & monitoring: If you’re looking for high-level tracking (page visits, button clicks), you can integrate tools like PostHog, LogSnag, or even Google Analytics, depending on the level of detail you need.
Hi, thanks for the help ! I’ll try to figure out the best way to do it on my project. I’m working with supabase, so I’ll try to track it from there.