proc
proc: {
cpu: {
limit: number;
total: number;
};
disk: {
io_limit: number;
limit: number;
used: number;
};
memory: {
limit: number;
total: number;
};
network: {
[key: string]: {
rx_bytes: number;
rx_dropped: number;
rx_errors: number;
rx_packets: number;
tx_bytes: number;
tx_dropped: number;
tx_errors: number;
tx_packets: number;
};
};
}
Type declaration
cpu: {
limit: number;
total: number;
}
limit: number
total: number
disk: {
io_limit: number;
limit: number;
used: number;
}
io_limit: number
limit: number
used: number
memory: {
limit: number;
total: number;
}
limit: number
total: number
network: {
[key: string]: {
rx_bytes: number;
rx_dropped: number;
rx_errors: number;
rx_packets: number;
tx_bytes: number;
tx_dropped: number;
tx_errors: number;
tx_packets: number;
};
}
[key: string]: {
rx_bytes: number;
rx_dropped: number;
rx_errors: number;
rx_packets: number;
tx_bytes: number;
tx_dropped: number;
tx_errors: number;
tx_packets: number;
}
rx_bytes: number
rx_dropped: number
rx_errors: number
rx_packets: number
tx_bytes: number
tx_dropped: number
tx_errors: number
tx_packets: number