package errorreporting

Import Path
	cloud.google.com/go/errorreporting (on go.dev)

Dependency Relation
	imports 14 packages, and imported by 5 packages

Involved Source Files Package errorreporting is a Google Stackdriver Error Reporting library. Any provided stacktraces must match the format produced by https://golang.org/pkg/runtime/#Stack or as per https://cloud.google.com/error-reporting/reference/rest/v1beta1/projects.events/report#ReportedErrorEvent for language specific stacktrace formats. This package is still experimental and subject to change. See https://cloud.google.com/error-reporting/ for more information.
Code Examples package main import ( "context" "errors" "log" "cloud.google.com/go/errorreporting" ) func main() { // Create the client. ctx := context.Background() ec, err := errorreporting.NewClient(ctx, "my-gcp-project", errorreporting.Config{ ServiceName: "myservice", ServiceVersion: "v1.0", }) if err != nil { // TODO: handle error } defer func() { if err := ec.Close(); err != nil { log.Printf("failed to report errors to Stackdriver: %v", err) } }() // Report an error. err = doSomething() if err != nil { ec.Report(errorreporting.Entry{ Error: err, }) } } func doSomething() error { return errors.New("something went wrong") }
Package-Level Type Names (total 4, in which 3 are exported)
/* sort exporteds by: | */
Client represents a Google Cloud Error Reporting client. Close calls Flush, then closes any resources held by the client. Close should be called when the client is no longer needed. Flush blocks until all currently buffered error reports are sent. If any errors occurred since the last call to Flush, or the creation of the client if this is the first call, then Flush reports the error via the Config.OnError handler. Report writes an error report. It doesn't block. Errors in writing the error report can be handled via Config.OnError. ReportSync writes an error report. It blocks until the entry is written. *T : golang.org/x/pkgsite/internal/middleware.Reporter *T : io.Closer *T : net/http.Flusher func NewClient(ctx context.Context, projectID string, cfg Config, opts ...option.ClientOption) (*Client, error) func golang.org/x/pkgsite/cmd/internal/cmdconfig.ReportingClient(ctx context.Context, cfg *config.Config) *Client func golang.org/x/pkgsite/cmd/internal/cmdconfig.Experimenter(ctx context.Context, cfg *config.Config, getter middleware.ExperimentGetter, reportingClient *Client) *middleware.Experimenter func golang.org/x/pkgsite/internal/derrors.SetReportingClient(c *Client)
Config is additional configuration for Client. OnError is the function to call if any background tasks errored. By default, errors are logged. ServiceName identifies the running program and is included in the error reports. Optional. ServiceVersion identifies the version of the running program and is included in the error reports. Optional. func NewClient(ctx context.Context, projectID string, cfg Config, opts ...option.ClientOption) (*Client, error)
Entry holds information about the reported error. Error error // if error is associated with a request. Stack specifies the stacktrace and call sequence correlated with the error. Stack's content must match the format specified by https://cloud.google.com/error-reporting/reference/rest/v1beta1/projects.events/report#ReportedErrorEvent.message or at least for Go programs, it must match the format produced by https://golang.org/pkg/runtime/debug/#Stack. If Stack is blank, the result of runtime.Stack will be used instead. // an identifier for the user affected by the error func (*Client).Report(e Entry) func (*Client).ReportSync(ctx context.Context, e Entry) error func golang.org/x/pkgsite/internal/middleware.Reporter.Report(Entry)
Package-Level Functions (total 2, in which 1 are exported)
NewClient returns a new error reporting client. Generally you will want to create a client on program initialization and use it through the lifetime of the process.
Package-Level Variables (only one, which is unexported)