Class ErrorGroupStats
Data extracted for a specific group based on certain filter criteria, such as a given time period and/or service filter.
Implements
Inherited Members
Namespace: Google.Apis.Clouderrorreporting.v1beta1.Data
Assembly: Google.Apis.Clouderrorreporting.v1beta1.dll
Syntax
public class ErrorGroupStats : IDirectResponseSchema
Properties
AffectedServices
Service contexts with a non-zero error count for the given filter criteria. This list can be truncated if
multiple services are affected. Refer to num_affected_services for the total count.
Declaration
[JsonProperty("affectedServices")]
public virtual IList<ServiceContext> AffectedServices { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<ServiceContext> |
AffectedUsersCount
Approximate number of affected users in the given group that match the filter 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.
Declaration
[JsonProperty("affectedUsersCount")]
public virtual long? AffectedUsersCount { get; set; }
Property Value
| Type | Description |
|---|---|
| long? |
Count
Approximate total number of events in the given group that match the filter criteria.
Declaration
[JsonProperty("count")]
public virtual long? Count { get; set; }
Property Value
| Type | Description |
|---|---|
| long? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
FirstSeenTime
object representation of FirstSeenTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use FirstSeenTimeDateTimeOffset instead.")]
public virtual object FirstSeenTime { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
FirstSeenTimeDateTimeOffset
DateTimeOffset representation of FirstSeenTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? FirstSeenTimeDateTimeOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset? |
FirstSeenTimeRaw
Approximate first occurrence that was ever seen for this group and which matches the given filter criteria, ignoring the time_range that was specified in the request.
Declaration
[JsonProperty("firstSeenTime")]
public virtual string FirstSeenTimeRaw { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Group
Group data that is independent of the filter criteria.
Declaration
[JsonProperty("group")]
public virtual ErrorGroup Group { get; set; }
Property Value
| Type | Description |
|---|---|
| ErrorGroup |
LastSeenTime
object representation of LastSeenTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use LastSeenTimeDateTimeOffset instead.")]
public virtual object LastSeenTime { get; set; }
Property Value
| Type | Description |
|---|---|
| object |
LastSeenTimeDateTimeOffset
DateTimeOffset representation of LastSeenTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? LastSeenTimeDateTimeOffset { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTimeOffset? |
LastSeenTimeRaw
Approximate last occurrence that was ever seen for this group and which matches the given filter criteria, ignoring the time_range that was specified in the request.
Declaration
[JsonProperty("lastSeenTime")]
public virtual string LastSeenTimeRaw { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
NumAffectedServices
The total number of services with a non-zero error count for the given filter criteria.
Declaration
[JsonProperty("numAffectedServices")]
public virtual int? NumAffectedServices { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
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.
Declaration
[JsonProperty("representative")]
public virtual ErrorEvent Representative { get; set; }
Property Value
| Type | Description |
|---|---|
| ErrorEvent |
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.
Declaration
[JsonProperty("timedCounts")]
public virtual IList<TimedCount> TimedCounts { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<TimedCount> |