pub struct StatsTube {Show 14 fields
pub name: String,
pub current_jobs_urgent: u32,
pub current_jobs_ready: u32,
pub current_jobs_reserved: u32,
pub current_jobs_delayed: u32,
pub current_jobs_buried: u32,
pub total_jobs: u32,
pub current_using: u32,
pub current_waiting: u32,
pub current_watching: u32,
pub pause: u32,
pub cmd_delete: u32,
pub cmd_pause_tube: u32,
pub pause_time_left: Duration,
}Fields§
§name: String“name” is the tube’s name.
current_jobs_urgent: u32“current-jobs-urgent” is the number of ready jobs with priority < 1024 in this tube.
current_jobs_ready: u32“current-jobs-ready” is the number of jobs in the ready queue in this tube.
current_jobs_reserved: u32“current-jobs-reserved” is the number of jobs reserved by all clients in this tube.
current_jobs_delayed: u32“current-jobs-delayed” is the number of delayed jobs in this tube.
current_jobs_buried: u32“current-jobs-buried” is the number of buried jobs in this tube.
total_jobs: u32“total-jobs” is the cumulative count of jobs created in this tube in the current beanstalkd process.
current_using: u32“current-using” is the number of open connections that are currently using this tube.
current_waiting: u32“current-waiting” is the number of open connections that have issued a reserve command while watching this tube but not yet received a response.
current_watching: u32“current-watching” is the number of open connections that are currently watching this tube.
pause: u32“pause” is the number of seconds the tube has been paused for.
cmd_delete: u32“cmd-delete” is the cumulative number of delete commands for this tube
cmd_pause_tube: u32“cmd-pause-tube” is the cumulative number of pause-tube commands for this tube.
pause_time_left: Duration“pause-time-left” is the number of seconds until the tube is un-paused.