Do you know if this tracking and analytics tool exists?

by 2 replies
3
Hi!

I've tried to google for a simple analytics tools but I haven't found what I'm looking for so I hope that growth-hackers in this forum can help me with a solution.

I'm looking for an event tracking solution where I can pick an event and get how many times it has occurred during a selected time range (for example today or previous 30 days).

The solution might be to send the events to an api endpoint ( do you know any existing service for this? )

I don't have any needs for Google Analytics since I only want to track specific events and sometimes I don't even have a webpage connected to it since it might be a physical button to raise to volume.

I would like to send events like this:
Code:
(HTTP-POST): /add-event
body: { "type": "click-volume-btn", "custom-props": { "direction": "up/down" } }
Then I want to be able to login to the service and select type=="click-volume-btn" && direction=="up" and "time-range: last 30 days" to see how many times this events has been triggered during the past 30 days.

Does anyone know of i a similar service? Or have you had similar requirements? If yes, how have you solved it?
#main internet marketing discussion forum #analytics #exists #tool #tracking
  • You can actually do this in Analytics using the ( gtag.js ) tag here is a page describing this action: ( https://developers.google.com/analyt...s/sending-data )
    • [ 1 ] Thanks
  • It sounds like your a developer. What is holding you back from creating your own solution? From a programming pov, it sounds simple enough to create an endpoint for this, storing action counts in a database, and a simple page for retrieving these counts

Next Topics on Trending Feed