Ad Widget

Collapse

Help with graphs.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • amadriga
    Junior Member
    • Apr 2007
    • 20

    #1

    Help with graphs.

    I recently update my zabbix from 1.4 to 1.6.

    Everything goes normal except for a problem with memory graphs in one server.

    The server being monitored is a Tru64 5.1B with 32GB of total memory.

    Graph is out of range. What can I check? some mysql tables? some values?

    Thanks.
    Attached Files
  • amadriga
    Junior Member
    • Apr 2007
    • 20

    #2
    BTW I change my memory.c VM_MEMORY_TOTAL because it did not count the UBC memory so that's why the total memory was not constant in the graphs.

    It's something I did in the 1.4 too, just to reflect the real total memory.

    static int VM_MEMORY_TOTAL(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result)
    {
    assert(result);

    init_result(result);

    return EXECUTE_INT(cmd,"vmstat -P|head -3|tail -1|awk '{pages=$2}{printf(pages*8192)}'", flags, result);
    }

    Comment

    Working...