interface_stats_* 表

interface_stats_* 表

interface_stats_* 表存储 一个 Greenplum 数据库实例在每个活动网络接口上 的通信统计指标。

这些表为将来使用保留,当前没有填充信息。

一共有三张 interface_stats 表, 它们具有相同的结构(列):

  • interface_stats_now 是一个外部表, 其数据文件位于 $MASTER_DATA_DIRECTORY/gpperfmon/data.
  • interface_stats_tail 是一个外部表, 其数据文件位于 in $MASTER_DATA_DIRECTORY/gpperfmon/data. 它是一个存储接口统计指标的过渡表,当数据已经从 interface_stats_now 中清除,但还没有提交到 interface_stats_history表中时,暂存在这里。 它通常仅包含数据几分钟时间。
  • interface_stats_history 是一个常规表, 用于存储历史接口统计指标。 它已预先设置为按月分区。 分区会根据需要以两个月为增量自动添加。
类型 说明
interface_name string 接口名称. 例如: eth0, eth1, lo.
bytes_received bigint 接收字节数.
packets_received bigint 接收报文数.
receive_errors bigint 接收数据时,发生的错误数.
receive_drops bigint 接收数据时,丢弃报文的次数.
receive_fifo_errors bigint 接收数据时,FIFO (先进先出) 错误发生的次数.
receive_frame_errors bigint 接收数据时,帧错误发生的次数.
receive_compressed_packets int 接受的压缩格式报文数.
receive_multicast_packets int 接受的多播报文数.
bytes_transmitted bigint 传输字节数.
packets_transmitted bigint 传输报文数.
transmit_errors bigint 数据传输时,发生的错误数.
transmit_drops bigint 数据传输时,丢弃报文的次数.
transmit_fifo_errors bigint 数据传输时,FIFO (先进先出) 错误发生的次数.
transmit_collision_errors bigint 数据传输时,碰撞错误发生的次数.
transmit_carrier_errors bigint 数据传输时,载波错误发生的次数.
transmit_compressed_packets int 传输的压缩格式报文数.