EventRecord
A Event Record is a way to track how many times a particular action/event occurred and is stored in a record and is accessed by a name.
Every event record starts with a count of 0 and can be incremented by using os.recordEvent(recordKey, eventName)
and the current count can be accessed with
os.countEvents(recordNameOrKey, eventName)
.
Event records are most useful for basic analytics.