[][src]Struct google_clouderrorreporting1_beta1::ErrorGroupStats

pub struct ErrorGroupStats {
    pub count: Option<String>,
    pub first_seen_time: Option<String>,
    pub affected_users_count: Option<String>,
    pub affected_services: Option<Vec<ServiceContext>>,
    pub timed_counts: Option<Vec<TimedCount>>,
    pub last_seen_time: Option<String>,
    pub representative: Option<ErrorEvent>,
    pub num_affected_services: Option<i32>,
    pub group: Option<ErrorGroup>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

count: Option<String>

Approximate total number of events in the given group that match the filter criteria.

first_seen_time: Option<String>

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.

affected_users_count: Option<String>

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.

affected_services: Option<Vec<ServiceContext>>

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.

timed_counts: Option<Vec<TimedCount>>

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.
last_seen_time: Option<String>

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.

representative: Option<ErrorEvent>

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.

num_affected_services: Option<i32>

The total number of services with a non-zero error count for the given filter criteria.

group: Option<ErrorGroup>

Group data that is independent of the filter criteria.

Trait Implementations

impl Part for ErrorGroupStats[src]

impl Default for ErrorGroupStats[src]

impl Clone for ErrorGroupStats[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ErrorGroupStats[src]

impl Serialize for ErrorGroupStats[src]

impl<'de> Deserialize<'de> for ErrorGroupStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]