Struct google_adexchangebuyer1d4::PerformanceReport[][src]

pub struct PerformanceReport {
    pub cookie_matcher_status_rate: Option<Vec<String>>,
    pub callout_status_rate: Option<Vec<String>>,
    pub hosted_match_status_rate: Option<Vec<String>>,
    pub bid_request_rate: Option<f64>,
    pub unsuccessful_request_rate: Option<f64>,
    pub latency50th_percentile: Option<f64>,
    pub successful_request_rate: Option<f64>,
    pub latency85th_percentile: Option<f64>,
    pub pixel_match_responses: Option<f64>,
    pub creative_status_rate: Option<Vec<String>>,
    pub latency95th_percentile: Option<f64>,
    pub no_quota_in_region: Option<f64>,
    pub kind: Option<String>,
    pub inventory_match_rate: Option<f64>,
    pub region: Option<String>,
    pub bid_rate: Option<f64>,
    pub quota_configured_limit: Option<f64>,
    pub out_of_quota: Option<f64>,
    pub timestamp: Option<String>,
    pub quota_throttled_limit: Option<f64>,
    pub filtered_bid_rate: Option<f64>,
    pub pixel_match_requests: Option<f64>,
}

The configuration data for an Ad Exchange performance report list.

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

Fields

Average QPS for cookie matcher operations.

Rate of various prefiltering statuses per match. Please refer to the callout-status-codes.txt file for different statuses.

Average QPS for hosted match operations.

The number of bid requests sent to your bidder.

The number of bid responses that were unsuccessful due to timeouts, incorrect formatting, etc.

The 50th percentile round trip latency(ms) as perceived from Google servers for the duration period covered by the report.

The number of properly formed bid responses received by our servers within the deadline.

The 85th percentile round trip latency(ms) as perceived from Google servers for the duration period covered by the report.

Average QPS for pixel match responses from clients.

Rate of ads with a given status. Please refer to the creative-status-codes.txt file for different statuses.

The 95th percentile round trip latency(ms) as perceived from Google servers for the duration period covered by the report.

Rate of various quota account statuses per quota check.

Resource type.

The number of potential queries based on your pretargeting settings.

The trading location of this data.

The number of bid responses with an ad.

The configured quota limits for this account.

Rate of various quota account statuses per quota check.

The unix timestamp of the starting time of this performance data.

The throttled quota limits for this account.

The number of bid responses that were filtered due to a policy violation or other errors.

Average QPS for pixel match requests from clients.

Trait Implementations

impl Default for PerformanceReport
[src]

Returns the "default value" for a type. Read more

impl Clone for PerformanceReport
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PerformanceReport
[src]

Formats the value using the given formatter. Read more

impl Part for PerformanceReport
[src]

Auto Trait Implementations