google_api_cloud_error_reporting v0.3.0 GoogleApi.CloudErrorReporting.V1beta1.Model.ReportedErrorEvent View Source
An error event which is reported to the Error Reporting system.
Attributes
context (GoogleApi.CloudErrorReporting.V1beta1.Model.ErrorContext.t): [Optional] A description of the context in which the error occurred. Defaults to
nil
.eventTime (DateTime.t): [Optional] Time when the event occurred. If not provided, the time when the event was received by the Error Reporting system will be used. Defaults to
nil
.message (String.t): [Required] The error message. If no
context.reportLocation
is provided, the message must contain a header (typically consisting of the exception type name and an error message) and an exception stack trace in one of the supported programming languages and formats. Supported languages are Java, Python, JavaScript, Ruby, C#, PHP, and Go. Supported stack trace formats are:Java: Must be the return value of
Throwable.printStackTrace()
.Python: Must be the return value of
traceback.format_exc()
.JavaScript: Must be the value of
error.stack
as returned by V8.Ruby: Must contain frames returned by
Exception.backtrace
.C#: Must be the return value of
Exception.ToString()
.PHP: Must start with
PHP (Notice|Parse error|Fatal error|Warning)
and contain the result of(string)$exception
.Go: Must be the return value of
runtime.Stack()
. Defaults tonil
.serviceContext (GoogleApi.CloudErrorReporting.V1beta1.Model.ServiceContext.t): [Required] The service context in which this error has occurred. Defaults to
nil
.
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Link to this section Types
t()
View Source
t() :: %GoogleApi.CloudErrorReporting.V1beta1.Model.ReportedErrorEvent{
context: GoogleApi.CloudErrorReporting.V1beta1.Model.ErrorContext.t(),
eventTime: DateTime.t(),
message: String.t(),
serviceContext: GoogleApi.CloudErrorReporting.V1beta1.Model.ServiceContext.t()
}
t() :: %GoogleApi.CloudErrorReporting.V1beta1.Model.ReportedErrorEvent{ context: GoogleApi.CloudErrorReporting.V1beta1.Model.ErrorContext.t(), eventTime: DateTime.t(), message: String.t(), serviceContext: GoogleApi.CloudErrorReporting.V1beta1.Model.ServiceContext.t() }
Link to this section Functions
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.