pub struct ComputeMessageStatsResponse {
pub message_bytes: Option<i64>,
pub message_count: Option<i64>,
pub minimum_event_time: Option<DateTime<Utc>>,
pub minimum_publish_time: Option<DateTime<Utc>>,
}Expand description
Response containing stats for messages in the requested topic and partition.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§message_bytes: Option<i64>The number of quota bytes accounted to these messages.
message_count: Option<i64>The count of messages.
minimum_event_time: Option<DateTime<Utc>>The minimum event timestamp across these messages. For the purposes of this computation, if a message does not have an event time, we use the publish time. The timestamp will be unset if there are no messages.
minimum_publish_time: Option<DateTime<Utc>>The minimum publish timestamp across these messages. Note that publish timestamps within a partition are not guaranteed to be non-decreasing. The timestamp will be unset if there are no messages.
Trait Implementations§
Source§impl Clone for ComputeMessageStatsResponse
impl Clone for ComputeMessageStatsResponse
Source§fn clone(&self) -> ComputeMessageStatsResponse
fn clone(&self) -> ComputeMessageStatsResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more