clouderrorreporting

package
v0.0.0-...-adeea6a Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 10, 2022 License: BSD-3-Clause Imports: 13 Imported by: 0

Documentation

Overview

Package clouderrorreporting provides access to the Stackdriver Error Reporting API.

See https://cloud.google.com/error-reporting/

Usage example:

import "google.golang.org/api/clouderrorreporting/v1beta1"
...
clouderrorreportingService, err := clouderrorreporting.New(oauthHttpClient)

Index

Constants

View Source
const (
	// View and manage your data across Google Cloud Platform services
	CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"
)

OAuth2 scopes used by this API.

Variables

This section is empty.

Functions

This section is empty.

Types

type DeleteEventsResponse

type DeleteEventsResponse struct {
	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`
}

DeleteEventsResponse: Response message for deleting error events.

type ErrorContext

type ErrorContext struct {
	// HttpRequest: The HTTP request which was processed when the error
	// was
	// triggered.
	HttpRequest *HttpRequestContext `json:"httpRequest,omitempty"`

	// ReportLocation: The location in the source code where the decision
	// was made to
	// report the error, usually the place where it was logged.
	// For a logged exception this would be the source line where
	// the
	// exception is logged, usually close to the place where it was
	// caught. This value is in contrast to
	// `Exception.cause_location`,
	// which describes the source line where the exception was thrown.
	ReportLocation *SourceLocation `json:"reportLocation,omitempty"`

	// User: The user who caused or was affected by the crash.
	// This can be a user ID, an email address, or an arbitrary token
	// that
	// uniquely identifies the user.
	// When sending an error report, leave this field empty if the user was
	// not
	// logged in. In this case the
	// Error Reporting system will use other data, such as remote IP
	// address, to
	// distinguish affected users. See `affected_users_count`
	// in
	// `ErrorGroupStats`.
	User string `json:"user,omitempty"`

	// ForceSendFields is a list of field names (e.g. "HttpRequest") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

ErrorContext: A description of the context in which an error occurred. This data should be provided by the application when reporting an error, unless the error report has been generated automatically from Google App Engine logs.

func (*ErrorContext) MarshalJSON

func (s *ErrorContext) MarshalJSON() ([]byte, error)

type ErrorEvent

type ErrorEvent struct {
	// Context: Data about the context in which the error occurred.
	Context *ErrorContext `json:"context,omitempty"`

	// EventTime: Time when the event occurred as provided in the error
	// report.
	// If the report did not contain a timestamp, the time the error was
	// received
	// by the Error Reporting system is used.
	EventTime string `json:"eventTime,omitempty"`

	// Message: The stack trace that was reported or logged by the service.
	Message string `json:"message,omitempty"`

	// ServiceContext: The `ServiceContext` for which this error was
	// reported.
	ServiceContext *ServiceContext `json:"serviceContext,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Context") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

ErrorEvent: An error event which is returned by the Error Reporting system.

func (*ErrorEvent) MarshalJSON

func (s *ErrorEvent) MarshalJSON() ([]byte, error)

type ErrorGroup

type ErrorGroup struct {
	// GroupId: Group IDs are unique for a given project. If the same kind
	// of error
	// occurs in different service contexts, it will receive the same group
	// ID.
	GroupId string `json:"groupId,omitempty"`

	// Name: The group resource name.
	// Example: <code>projects/my-project-123/groups/my-groupid</code>
	Name string `json:"name,omitempty"`

	// TrackingIssues: Associated tracking issues.
	TrackingIssues []*TrackingIssue `json:"trackingIssues,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "GroupId") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

ErrorGroup: Description of a group of similar error events.

func (*ErrorGroup) MarshalJSON

func (s *ErrorGroup) MarshalJSON() ([]byte, error)

type ErrorGroupStats

type ErrorGroupStats struct {
	// AffectedServices: Service contexts with a non-zero error count for
	// the given selection
	// criteria. This list can be truncated if multiple services are
	// affected.
	// Refer to `num_affected_services` for the total count.
	AffectedServices []*ServiceContext `json:"affectedServices,omitempty"`

	// AffectedUsersCount: Approximate number of affected users in the given
	// group that
	// match the selection criteria.
	// Users are distinguished by data in the `ErrorContext` of
	// the
	// individual error events, such as their login name or their remote
	// IP address in case of HTTP requests.
	// The number of affected users can be zero even if the number of
	// errors is non-zero if no data was provided from which the
	// affected user could be deduced.
	// Users are counted based on data in the request
	// context that was provided in the error report. If more users
	// are
	// implicitly affected, such as due to a crash of the whole
	// service,
	// this is not reflected here.
	AffectedUsersCount int64 `json:"affectedUsersCount,omitempty,string"`

	// Count: Approximate total number of events in the given group that
	// match
	// the selection criteria.
	Count int64 `json:"count,omitempty,string"`

	// FirstSeenTime: Approximate first occurrence that was seen for this
	// group and
	// which matches the given selection criteria.
	FirstSeenTime string `json:"firstSeenTime,omitempty"`

	// Group: Group data that is independent of the selection criteria.
	Group *ErrorGroup `json:"group,omitempty"`

	// LastSeenTime: Approximate last occurrence that was seen for this
	// group
	// and which matches the given selection criteria.
	LastSeenTime string `json:"lastSeenTime,omitempty"`

	// NumAffectedServices: The total number of services with a non-zero
	// error count for the given
	// selection criteria.
	NumAffectedServices int64 `json:"numAffectedServices,omitempty"`

	// Representative: An arbitrary event that is chosen as representative
	// for the whole group.
	// The representative event is intended to be used as a quick preview
	// for
	// the whole group. Events in the group are usually sufficiently
	// similar
	// to each other such that showing an arbitrary representative
	// provides
	// insight into the characteristics of the group as a whole.
	Representative *ErrorEvent `json:"representative,omitempty"`

	// TimedCounts: Approximate number of occurrences over time.
	// Timed counts returned by ListGroups are guaranteed to be:
	//
	// - Inside the requested time interval
	// - Non-overlapping, and
	// - Ordered by ascending time.
	TimedCounts []*TimedCount `json:"timedCounts,omitempty"`

	// ForceSendFields is a list of field names (e.g. "AffectedServices") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

ErrorGroupStats: Data extracted for a specific group based on certain selection criteria, such as a given time period and/or service filter.

func (*ErrorGroupStats) MarshalJSON

func (s *ErrorGroupStats) MarshalJSON() ([]byte, error)

type HttpRequestContext

type HttpRequestContext struct {
	// Method: The type of HTTP request, such as `GET`, `POST`, etc.
	Method string `json:"method,omitempty"`

	// Referrer: The referrer information that is provided with the request.
	Referrer string `json:"referrer,omitempty"`

	// RemoteIp: The IP address from which the request originated.
	// This can be IPv4, IPv6, or a token which is derived from the
	// IP address, depending on the data that has been provided
	// in the error report.
	RemoteIp string `json:"remoteIp,omitempty"`

	// ResponseStatusCode: The HTTP response status code for the request.
	ResponseStatusCode int64 `json:"responseStatusCode,omitempty"`

	// Url: The URL of the request.
	Url string `json:"url,omitempty"`

	// UserAgent: The user agent information that is provided with the
	// request.
	UserAgent string `json:"userAgent,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Method") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

HttpRequestContext: HTTP request data that is related to a reported error. This data should be provided by the application when reporting an error, unless the error report has been generated automatically from Google App Engine logs.

func (*HttpRequestContext) MarshalJSON

func (s *HttpRequestContext) MarshalJSON() ([]byte, error)

type ListEventsResponse

type ListEventsResponse struct {
	// ErrorEvents: The error events which match the given request.
	ErrorEvents []*ErrorEvent `json:"errorEvents,omitempty"`

	// NextPageToken: If non-empty, more results are available.
	// Pass this token, along with the same query parameters as the
	// first
	// request, to view the next page of results.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "ErrorEvents") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

ListEventsResponse: Contains a set of requested error events.

func (*ListEventsResponse) MarshalJSON

func (s *ListEventsResponse) MarshalJSON() ([]byte, error)

type ListGroupStatsResponse

type ListGroupStatsResponse struct {
	// ErrorGroupStats: The error group stats which match the given request.
	ErrorGroupStats []*ErrorGroupStats `json:"errorGroupStats,omitempty"`

	// NextPageToken: If non-empty, more results are available.
	// Pass this token, along with the same query parameters as the
	// first
	// request, to view the next page of results.
	NextPageToken string `json:"nextPageToken,omitempty"`

	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`

	// ForceSendFields is a list of field names (e.g. "ErrorGroupStats") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

ListGroupStatsResponse: Contains a set of requested error group stats.

func (*ListGroupStatsResponse) MarshalJSON

func (s *ListGroupStatsResponse) MarshalJSON() ([]byte, error)

type ProjectsDeleteEventsCall

type ProjectsDeleteEventsCall struct {
	// contains filtered or unexported fields
}

func (*ProjectsDeleteEventsCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsDeleteEventsCall) Do

Do executes the "clouderrorreporting.projects.deleteEvents" call. Exactly one of *DeleteEventsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *DeleteEventsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsDeleteEventsCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

type ProjectsEventsListCall

type ProjectsEventsListCall struct {
	// contains filtered or unexported fields
}

func (*ProjectsEventsListCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsEventsListCall) Do

Do executes the "clouderrorreporting.projects.events.list" call. Exactly one of *ListEventsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListEventsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsEventsListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsEventsListCall) GroupId

GroupId sets the optional parameter "groupId": [Required] The group for which events shall be returned.

func (*ProjectsEventsListCall) IfNoneMatch

func (c *ProjectsEventsListCall) IfNoneMatch(entityTag string) *ProjectsEventsListCall

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*ProjectsEventsListCall) PageSize

func (c *ProjectsEventsListCall) PageSize(pageSize int64) *ProjectsEventsListCall

PageSize sets the optional parameter "pageSize": [Optional] The maximum number of results to return per response.

func (*ProjectsEventsListCall) PageToken

func (c *ProjectsEventsListCall) PageToken(pageToken string) *ProjectsEventsListCall

PageToken sets the optional parameter "pageToken": [Optional] A `next_page_token` provided by a previous response.

func (*ProjectsEventsListCall) Pages

Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.

func (*ProjectsEventsListCall) ServiceFilterService

func (c *ProjectsEventsListCall) ServiceFilterService(serviceFilterService string) *ProjectsEventsListCall

ServiceFilterService sets the optional parameter "serviceFilter.service": [Optional] The exact value to match against [`ServiceContext.service`](/error-reporting/reference/rest/v1b eta1/ServiceContext#FIELDS.service).

func (*ProjectsEventsListCall) ServiceFilterVersion

func (c *ProjectsEventsListCall) ServiceFilterVersion(serviceFilterVersion string) *ProjectsEventsListCall

ServiceFilterVersion sets the optional parameter "serviceFilter.version": [Optional] The exact value to match against [`ServiceContext.version`](/error-reporting/reference/rest/v1b eta1/ServiceContext#FIELDS.version).

func (*ProjectsEventsListCall) TimeRangePeriod

func (c *ProjectsEventsListCall) TimeRangePeriod(timeRangePeriod string) *ProjectsEventsListCall

TimeRangePeriod sets the optional parameter "timeRange.period": Restricts the query to the specified time range.

Possible values:

"PERIOD_UNSPECIFIED"
"PERIOD_1_HOUR"
"PERIOD_6_HOURS"
"PERIOD_1_DAY"
"PERIOD_1_WEEK"
"PERIOD_30_DAYS"

type ProjectsEventsReportCall

type ProjectsEventsReportCall struct {
	// contains filtered or unexported fields
}

func (*ProjectsEventsReportCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsEventsReportCall) Do

Do executes the "clouderrorreporting.projects.events.report" call. Exactly one of *ReportErrorEventResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ReportErrorEventResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsEventsReportCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

type ProjectsEventsService

type ProjectsEventsService struct {
	// contains filtered or unexported fields
}

func NewProjectsEventsService

func NewProjectsEventsService(s *Service) *ProjectsEventsService

func (*ProjectsEventsService) List

func (r *ProjectsEventsService) List(projectName string) *ProjectsEventsListCall

List: Lists the specified events.

func (*ProjectsEventsService) Report

func (r *ProjectsEventsService) Report(projectName string, reportederrorevent *ReportedErrorEvent) *ProjectsEventsReportCall

Report: Report an individual error event.

This endpoint accepts <strong>either</strong> an OAuth token, <strong>or</strong> an <a href="https://support.google.com/cloud/answer/6158862">API key</a> for authentication. To use an API key, append it to the URL as the value of a `key` parameter. For example: <pre>POST https://clouderrorreporting.googleapis.com/v1beta1/projects/example-project/events:report?key=123ABC456</pre>

type ProjectsGroupStatsListCall

type ProjectsGroupStatsListCall struct {
	// contains filtered or unexported fields
}

func (*ProjectsGroupStatsListCall) Alignment

Alignment sets the optional parameter "alignment": [Optional] The alignment of the timed counts to be returned. Default is `ALIGNMENT_EQUAL_AT_END`.

Possible values:

"ERROR_COUNT_ALIGNMENT_UNSPECIFIED"
"ALIGNMENT_EQUAL_ROUNDED"
"ALIGNMENT_EQUAL_AT_END"

func (*ProjectsGroupStatsListCall) AlignmentTime

func (c *ProjectsGroupStatsListCall) AlignmentTime(alignmentTime string) *ProjectsGroupStatsListCall

AlignmentTime sets the optional parameter "alignmentTime": [Optional] Time where the timed counts shall be aligned if rounded alignment is chosen. Default is 00:00 UTC.

func (*ProjectsGroupStatsListCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsGroupStatsListCall) Do

Do executes the "clouderrorreporting.projects.groupStats.list" call. Exactly one of *ListGroupStatsResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ListGroupStatsResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsGroupStatsListCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsGroupStatsListCall) GroupId

GroupId sets the optional parameter "groupId": [Optional] List all <code>ErrorGroupStats</code> with these IDs. If not specified, all error group stats with a non-zero error count for the given selection criteria are returned.

func (*ProjectsGroupStatsListCall) IfNoneMatch

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

func (*ProjectsGroupStatsListCall) Order

Order sets the optional parameter "order": [Optional] The sort order in which the results are returned. Default is `COUNT_DESC`.

Possible values:

"GROUP_ORDER_UNSPECIFIED"
"COUNT_DESC"
"LAST_SEEN_DESC"
"CREATED_DESC"
"AFFECTED_USERS_DESC"

func (*ProjectsGroupStatsListCall) PageSize

PageSize sets the optional parameter "pageSize": [Optional] The maximum number of results to return per response. Default is 20.

func (*ProjectsGroupStatsListCall) PageToken

PageToken sets the optional parameter "pageToken": [Optional] A `next_page_token` provided by a previous response. To view additional results, pass this token along with the identical query parameters as the first request.

func (*ProjectsGroupStatsListCall) Pages

Pages invokes f for each page of results. A non-nil error returned from f will halt the iteration. The provided context supersedes any context provided to the Context method.

func (*ProjectsGroupStatsListCall) ServiceFilterService

func (c *ProjectsGroupStatsListCall) ServiceFilterService(serviceFilterService string) *ProjectsGroupStatsListCall

ServiceFilterService sets the optional parameter "serviceFilter.service": [Optional] The exact value to match against [`ServiceContext.service`](/error-reporting/reference/rest/v1b eta1/ServiceContext#FIELDS.service).

func (*ProjectsGroupStatsListCall) ServiceFilterVersion

func (c *ProjectsGroupStatsListCall) ServiceFilterVersion(serviceFilterVersion string) *ProjectsGroupStatsListCall

ServiceFilterVersion sets the optional parameter "serviceFilter.version": [Optional] The exact value to match against [`ServiceContext.version`](/error-reporting/reference/rest/v1b eta1/ServiceContext#FIELDS.version).

func (*ProjectsGroupStatsListCall) TimeRangePeriod

func (c *ProjectsGroupStatsListCall) TimeRangePeriod(timeRangePeriod string) *ProjectsGroupStatsListCall

TimeRangePeriod sets the optional parameter "timeRange.period": Restricts the query to the specified time range.

Possible values:

"PERIOD_UNSPECIFIED"
"PERIOD_1_HOUR"
"PERIOD_6_HOURS"
"PERIOD_1_DAY"
"PERIOD_1_WEEK"
"PERIOD_30_DAYS"

func (*ProjectsGroupStatsListCall) TimedCountDuration

func (c *ProjectsGroupStatsListCall) TimedCountDuration(timedCountDuration string) *ProjectsGroupStatsListCall

TimedCountDuration sets the optional parameter "timedCountDuration": [Optional] The preferred duration for a single returned `TimedCount`. If not set, no timed counts are returned.

type ProjectsGroupStatsService

type ProjectsGroupStatsService struct {
	// contains filtered or unexported fields
}

func NewProjectsGroupStatsService

func NewProjectsGroupStatsService(s *Service) *ProjectsGroupStatsService

func (*ProjectsGroupStatsService) List

List: Lists the specified groups.

type ProjectsGroupsGetCall

type ProjectsGroupsGetCall struct {
	// contains filtered or unexported fields
}

func (*ProjectsGroupsGetCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsGroupsGetCall) Do

Do executes the "clouderrorreporting.projects.groups.get" call. Exactly one of *ErrorGroup or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ErrorGroup.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsGroupsGetCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

func (*ProjectsGroupsGetCall) IfNoneMatch

func (c *ProjectsGroupsGetCall) IfNoneMatch(entityTag string) *ProjectsGroupsGetCall

IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.

type ProjectsGroupsService

type ProjectsGroupsService struct {
	// contains filtered or unexported fields
}

func NewProjectsGroupsService

func NewProjectsGroupsService(s *Service) *ProjectsGroupsService

func (*ProjectsGroupsService) Get

Get: Get the specified group.

func (*ProjectsGroupsService) Update

func (r *ProjectsGroupsService) Update(name string, errorgroup *ErrorGroup) *ProjectsGroupsUpdateCall

Update: Replace the data for the specified group. Fails if the group does not exist.

type ProjectsGroupsUpdateCall

type ProjectsGroupsUpdateCall struct {
	// contains filtered or unexported fields
}

func (*ProjectsGroupsUpdateCall) Context

Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.

func (*ProjectsGroupsUpdateCall) Do

Do executes the "clouderrorreporting.projects.groups.update" call. Exactly one of *ErrorGroup or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ErrorGroup.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.

func (*ProjectsGroupsUpdateCall) Fields

Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.

type ProjectsService

type ProjectsService struct {
	Events *ProjectsEventsService

	GroupStats *ProjectsGroupStatsService

	Groups *ProjectsGroupsService
	// contains filtered or unexported fields
}

func NewProjectsService

func NewProjectsService(s *Service) *ProjectsService

func (*ProjectsService) DeleteEvents

func (r *ProjectsService) DeleteEvents(projectName string) *ProjectsDeleteEventsCall

DeleteEvents: Deletes all error events of a given project.

type ReportErrorEventResponse

type ReportErrorEventResponse struct {
	// ServerResponse contains the HTTP response code and headers from the
	// server.
	googleapi.ServerResponse `json:"-"`
}

ReportErrorEventResponse: Response for reporting an individual error event. Data may be added to this message in the future.

type ReportedErrorEvent

type ReportedErrorEvent struct {
	// Context: [Optional] A description of the context in which the error
	// occurred.
	Context *ErrorContext `json:"context,omitempty"`

	// EventTime: [Optional] Time when the event occurred.
	// If not provided, the time when the event was received by the
	// Error Reporting system will be used.
	EventTime string `json:"eventTime,omitempty"`

	// Message: [Required] A message describing the error. The message can
	// contain an
	// exception stack in one of the supported programming languages and
	// formats.
	// In that case, the message is parsed and detailed exception
	// information
	// is returned when retrieving the error event again.
	Message string `json:"message,omitempty"`

	// ServiceContext: [Required] The service context in which this error
	// has occurred.
	ServiceContext *ServiceContext `json:"serviceContext,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Context") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

ReportedErrorEvent: An error event which is reported to the Error Reporting system.

func (*ReportedErrorEvent) MarshalJSON

func (s *ReportedErrorEvent) MarshalJSON() ([]byte, error)

type Service

type Service struct {
	BasePath  string // API endpoint base URL
	UserAgent string // optional additional User-Agent fragment

	Projects *ProjectsService
	// contains filtered or unexported fields
}

func New

func New(client *http.Client) (*Service, error)

type ServiceContext

type ServiceContext struct {
	// Service: An identifier of the service, such as the name of
	// the
	// executable, job, or Google App Engine service name. This field is
	// expected
	// to have a low number of values that are relatively stable over time,
	// as
	// opposed to `version`, which can be changed whenever new code is
	// deployed.
	//
	// Contains the service name for error reports extracted from Google
	// App Engine logs or `default` if the App Engine default service is
	// used.
	Service string `json:"service,omitempty"`

	// Version: Represents the source code version that the developer
	// provided,
	// which could represent a version label or a Git SHA-1 hash, for
	// example.
	Version string `json:"version,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Service") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

ServiceContext: Describes a running service that sends errors. Its version changes over time and multiple versions can run in parallel.

func (*ServiceContext) MarshalJSON

func (s *ServiceContext) MarshalJSON() ([]byte, error)

type SourceLocation

type SourceLocation struct {
	// FilePath: The source code filename, which can include a truncated
	// relative
	// path, or a full path from a production machine.
	FilePath string `json:"filePath,omitempty"`

	// FunctionName: Human-readable name of a function or method.
	// The value can include optional context like the class or package
	// name.
	// For example, `my.package.MyClass.method` in case of Java.
	FunctionName string `json:"functionName,omitempty"`

	// LineNumber: 1-based. 0 indicates that the line number is unknown.
	LineNumber int64 `json:"lineNumber,omitempty"`

	// ForceSendFields is a list of field names (e.g. "FilePath") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

SourceLocation: Indicates a location in the source code of the service for which errors are reported. This data should be provided by the application when reporting an error, unless the error report has been generated automatically from Google App Engine logs. All fields are optional.

func (*SourceLocation) MarshalJSON

func (s *SourceLocation) MarshalJSON() ([]byte, error)

type TimedCount

type TimedCount struct {
	// Count: Approximate number of occurrences in the given time period.
	Count int64 `json:"count,omitempty,string"`

	// EndTime: End of the time period to which `count` refers (excluded).
	EndTime string `json:"endTime,omitempty"`

	// StartTime: Start of the time period to which `count` refers
	// (included).
	StartTime string `json:"startTime,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Count") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

TimedCount: The number of errors in a given time period. All numbers are approximate since the error events are sampled before counting them.

func (*TimedCount) MarshalJSON

func (s *TimedCount) MarshalJSON() ([]byte, error)

type TrackingIssue

type TrackingIssue struct {
	// Url: A URL pointing to a related entry in an issue tracking
	// system.
	// Example: https://github.com/user/project/issues/4
	Url string `json:"url,omitempty"`

	// ForceSendFields is a list of field names (e.g. "Url") to
	// unconditionally include in API requests. By default, fields with
	// empty values are omitted from API requests. However, any non-pointer,
	// non-interface field appearing in ForceSendFields will be sent to the
	// server regardless of whether the field is empty or not. This may be
	// used to include empty fields in Patch requests.
	ForceSendFields []string `json:"-"`
}

TrackingIssue: Information related to tracking the progress on resolving the error.

func (*TrackingIssue) MarshalJSON

func (s *TrackingIssue) MarshalJSON() ([]byte, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL