Log guide
Last updated
Was this helpful?
Last updated
Was this helpful?
The module stores app-related events in a persistent log as they occur, aimed at providing a log of meaningful events that happened in your app, like when a user signs up, an invoice is generated, an API call is received, and whatever other events you deem important enough to be logged for future reference or analysis.
Events are stored in the log
database table using a shared-memory buffer and a programmed commit task for optimal performance, resulting in a system capable of ingesting many events per second without a noticeable performance impact.
You can create the
log
table in your database by importing thelog.sql
file you'll find in the , under theinstall/database
directory.
events are stored as objects that extend the base class, so you create a class for every event you want to log.
Imagine you would like to log an event every time a someone searches for a movie in your app. To do so, we would first create the class LogEventMovieSearch
in the file classes/LogEventMovieSearch.class.php
like this:
And we trigger the like this:
objects can carry some additional data to better describe the event, in our case, we could add the movie title the user searched for, like this:
So now we can trigger the event in this simplified way, and the movie title will be stored along with it:
Sometimes you might want to store ids from items in other tables from your database in your Log events.
For example, let's say that whenever a user that has logged in to your app searches for a movie like we did in the example above, its user id gets also stored in the LogEventMovieSearch
. To do it, we would modify the LogEventMovieSearch
class like this:
You can further simplify the way you trigger Log events by overloading your event's method. Let's say instead of passing the whole additionalData
hash array like we did above, we wanted to be able to just pass the movie title and let the constructor take care of it. We would do it like this:
See this example working in the site.