Blame src/components/net/README

Packit 577717
Packit 577717
COMPONENT
Packit 577717
Packit 577717
    net
Packit 577717
Packit 577717
SUMMARY
Packit 577717
Packit 577717
    Linux network component
Packit 577717
Packit 577717
DESCRIPTION
Packit 577717
Packit 577717
    This network component enables PAPI-C to access the network
Packit 577717
    statistics exported by the Linux kernel through the /proc
Packit 577717
    pseudo-file system (file /proc/net/dev).
Packit 577717
Packit 577717
    This component will dynamically create a native events table
Packit 577717
    based on the number of interfaces listed in /proc/net/dev (16
Packit 577717
    entries for each network interface).
Packit 577717
Packit 577717
    Event names
Packit 577717
    -------------------------
Packit 577717
      "<ifname>.rx.bytes",
Packit 577717
      "<ifname>.rx.packets",
Packit 577717
      "<ifname>.rx.errors",
Packit 577717
      "<ifname>.rx.dropped",
Packit 577717
      "<ifname>.rx.fifo",
Packit 577717
      "<ifname>.rx.frame",
Packit 577717
      "<ifname>.rx.compressed",
Packit 577717
      "<ifname>.rx.multicast",
Packit 577717
      "<ifname>.tx.bytes",
Packit 577717
      "<ifname>.tx.packets",
Packit 577717
      "<ifname>.tx.errors",
Packit 577717
      "<ifname>.tx.dropped",
Packit 577717
      "<ifname>.tx.fifo",
Packit 577717
      "<ifname>.tx.colls",
Packit 577717
      "<ifname>.tx.carrier",
Packit 577717
      "<ifname>.tx.compressed"
Packit 577717
Packit 577717
    By default the Linux kernel only updates the network statistics
Packit 577717
    once every second (see the references listed in the "SEE ALSO"
Packit 577717
    section for some problems you may come across and for how to
Packit 577717
    change the default polling period).
Packit 577717
Packit 577717
    Note: The Linux network statistics are updated by code that
Packit 577717
    resides in the file net/core/dev.c.
Packit 577717
Packit 577717
AUTHOR
Packit 577717
Packit 577717
  Initial written by Haihang You <you@cs.utk.edu>.
Packit 577717
  Re-written by Jose Pedro Oliveira <jpo@di.uminho.pt> in order
Packit 577717
  to source data directly from /proc/net/dev.
Packit 577717
Packit 577717
SEE ALSO
Packit 577717
Packit 577717
 * Network Stats Anomaly
Packit 577717
   http://collectl.sourceforge.net/NetworkStats.html
Packit 577717
Packit 577717
 * Occasionally corrupted network stats in /proc/net/dev
Packit 577717
   http://kerneltrap.org/mailarchive/linux-netdev/2008/1/14/566936
Packit 577717
   http://kerneltrap.org/mailarchive/linux-netdev/2008/1/14/567512
Packit 577717
Packit 577717
Packit 577717
# 2011-11-05 jpo
Packit 577717
# vim:set ai ts=4 sw=4 sts=4 et: