pub struct AppWorkers {
    pub workers_active: u32,
    pub workers_idle: u32,
    pub workers_max: u32,
    pub req_delayed: u32,
    pub req_dropped: u32,
}Expand description
App Workers - Format (0,2206)
Application worker thread/process statistics
§XDR Definition (sFlow Application)
/* Application workers */
/* opaque = counter_data; enterprise = 0; format = 2206 */
struct app_workers {
    unsigned int workers_active; /* number of active workers */
    unsigned int workers_idle;   /* number of idle workers */
    unsigned int workers_max;    /* max number of workers */
    unsigned int req_delayed;    /* requests delayed */
    unsigned int req_dropped;    /* requests dropped */
}Fields§
§workers_active: u32Number of active workers
workers_idle: u32Number of idle workers
workers_max: u32Maximum number of workers
req_delayed: u32Number of delayed requests
req_dropped: u32Number of dropped requests
Trait Implementations§
Source§impl Clone for AppWorkers
 
impl Clone for AppWorkers
Source§fn clone(&self) -> AppWorkers
 
fn clone(&self) -> AppWorkers
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for AppWorkers
 
impl Debug for AppWorkers
Source§impl PartialEq for AppWorkers
 
impl PartialEq for AppWorkers
impl Eq for AppWorkers
impl StructuralPartialEq for AppWorkers
Auto Trait Implementations§
impl Freeze for AppWorkers
impl RefUnwindSafe for AppWorkers
impl Send for AppWorkers
impl Sync for AppWorkers
impl Unpin for AppWorkers
impl UnwindSafe for AppWorkers
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more