Webkit_trace_eventOutput a binary or Yojson-compatable representation of WebKit trace events. Spec at https://docs.google.com/document/d/1CvAClvFfyA5R-PhYUmn5OOQtYMH4h6I0nSsKchNAySU/
type event = {name : string; |
categories : string list; |
phase : event_kind; |
timestamp : int; |
pid : int; |
tid : int; |
}type events = event listval create_event :
?categories:string list ->
?pid:int ->
?tid:int ->
phase:event_kind ->
timestamp:int ->
string ->
eventmodule Output : sig ... end