Parsing an event log for extraction of events

Greetings,

I am developer at a private company & we want to create our own metadata track based on MS / camera events. Milestone Management Client enables performing actions based on satisfying particular rules, one of these actions is creating a log entry. An obvious possible approach would be to continually parse this event log for extraction of events. However, the event log has to be saved manually via a GUI, which renders this option almost useless. Do you have some experience with parsing the event log? Or could you please recommend some better approach?

You have to use VideoOS.Platform.Log.LogClient method, for instance

LogClient.Instance.ReadLog(serverId, numPage, out pageRecords, out fieldsNames, Group.Audit)

The log tab could have several pages (1000 entries if full), last parameter indicate tipe of log to read.

Freddy