Ad Widget

Collapse

vfs.dev.read/write Types

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ahanson
    Junior Member
    • Sep 2007
    • 15

    #1

    vfs.dev.read/write Types

    I want to add Disk I/O monitoring for a Linux machine. I got a simple "vfs.dev.read[hda1]" key to work, which I guess defaults to either "operations" or "sectors" depending on which post you read. Could I get some clarification on this, and any other options for this key.

    I really just want to see if Disk I/O is becoming a bottleneck.
  • lamont
    Member
    • Nov 2007
    • 89

    #2
    on linux the default is sectors:

    from src/libs/zbxsysinfo/linux/diskio.c:

    if(mode[0] == '\0')
    {
    /* default parameter */
    zbx_snprintf(mode, sizeof(mode), "sectors");
    }

    Comment

    • ahanson
      Junior Member
      • Sep 2007
      • 15

      #3
      Thanks so much for that response.

      Now my only question is, what other options are there? I know of operations and sectors, is that all?

      Comment

      Working...