Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type t = private {
filename : string option;
function_ : string option;
module_ : string option;
lineno : int option;
colno : int option;
abs_path : string option;
context_line : string option;
pre_context : string list;
post_context : string list;
in_app : bool option;
vars : string Core_kernel.String.Map.t;
package : string option;
platform : Platform.t option;
}
https://docs.sentry.io/clientdev/interfaces/stacktrace/
val make :
?filename:string ->
?function_:string ->
?module_:string ->
?lineno:int ->
?colno:int ->
?abs_path:string ->
?context_line:string ->
?pre_context:string list ->
?post_context:string list ->
?in_app:bool ->
?vars:string Core_kernel.String.Map.t ->
?package:string ->
?platform:Platform.t ->
unit ->
t Core_kernel.Or_error.t
val make_exn :
?filename:string ->
?function_:string ->
?module_:string ->
?lineno:int ->
?colno:int ->
?abs_path:string ->
?context_line:string ->
?pre_context:string list ->
?post_context:string list ->
?in_app:bool ->
?vars:string Core_kernel.String.Map.t ->
?package:string ->
?platform:Platform.t ->
unit ->
t
val to_payload : t -> Sentry__.Payloads_t.stackframe