容器-promQL语法之网络I/O
对网络io的监控对磁盘的监控非常相似,主要包括以下指标
1、接受的总字节数
container_network_receive_bytes_total
2、发送的总字节数
container_network_transmit_bytes_total
这两个参数分别对应网络的下行(网络读)和上行(网络写),都是计数器类型
3、通过rate方法获取网络的瞬时读写速率
rate(container_network_receive_bytes_total[5m])
4、如果是针对网络异常的监控,则可以通过以下参数进行
4.1、网络接受丢包数
container_network_receive_packets_dropped_total
4.2、网络发送丢失包数
container_network_receive_packets_dropped_total
4.3、网络接受错误总数
container_network_receive_errors_total
4.4、网络发送错误总数
container_network_transmit_errors_total