Ad Widget

Collapse

More graphics

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • aspenbr
    Junior Member
    • Oct 2008
    • 8

    #1

    More graphics

    Hello

    I have a lot of itens for be monitored, the itens are:

    Harddisk
    PhysicalDisk: % Disk Time more than 50% indicates a bottleneck

    Memory
    Pages /sec (Hard page faults)
    Page Faults /sec counter is likely to be at least twice the value of the above.
    Page File: % Usage

    Network Interface
    Network Interface\ Bytes Total/sec
    Network Interface\ Bytes Sent/sec
    Network Interface\ Bytes Received/sec
    Network Interface\ Current Bandwidth

    Processador
    Processor: % Processor Time
    System: Processor Queue
    Multiple Processors

    Somebody can explain for me how I can make graphs and catalog information about that itens ?

    I am using Zabbix 1.8.2 and client running Windows 2003 Server Standard .
  • harmonica
    Senior Member
    • Jan 2009
    • 251

    #2
    I,

    Use perf_counter. Some examples:

    [Cpu]
    key: perf_counter[\Processor(_Total)\% Processor Time]


    [Memory]
    key: perf_counter[\Memory\Pages/sec]
    key: perf_counter[\Memory\Page Reads/sec]
    key: perf_counter[\Memory\Pages Output/sec]
    key: perf_counter[\Memory\Page Writes/sec]
    key: perf_counter[\Paging File(_Total)\% Usage]
    key: perf_counter[\Paging File(_Total)\% Usage Peak]


    [Disk]
    key: perf_counter[\PhysicalDisk(_Total)\Current Disk Queue Length]
    key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk sec/Read]
    key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk sec/Write]
    key: perf_counter[\PhysicalDisk(_Total)\Disk Transfers/sec]
    key: perf_counter[\PhysicalDisk(_Total)\Disk Reads/sec]
    key: perf_counter[\PhysicalDisk(_Total)\Disk Writes/sec]
    key: perf_counter[\PhysicalDisk(_Total)\Disk Bytes/sec]
    key: perf_counter[\PhysicalDisk(_Total)\Disk Read Bytes/sec]
    key: perf_counter[\PhysicalDisk(_Total)\Disk Write Bytes/sec]
    key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk Bytes/Transfer]
    key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk Bytes/Read]
    key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk Bytes/Write]
    key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk Queue Length]


    [Dns]
    key: perf_counter[\DNS\Total Query Received]


    [System]
    key: perf_counter[\System\System Up Time]

    Comment

    • zabbix_zen
      Senior Member
      • Jul 2009
      • 426

      #3
      After polling the hosts for those items follow the manual in,

      http://www.zabbix.com/documentation/...ion?s[]=graphs
      CTRL + F
      'Graph configuration'

      Comment

      • aspenbr
        Junior Member
        • Oct 2008
        • 8

        #4
        Thank for answer me

        I add new graph as new item on computer that I am monitoring , but none data is show on graph.

        I created the item following steps , Configuration >> Host >> Items >> Create Item , after I create one graph , Configuration >> Host >> Graphs >> Create Graph so I choose the item created adn save the graph.

        This process is correct ?

        After 1 minute the status change of Active for Not supported, why this ?

        Thanks ...

        Comment

        • tchjts1
          Senior Member
          • May 2008
          • 1605

          #5
          Originally posted by aspenbr

          After 1 minute the status change of Active for Not supported, why this ?

          Thanks ...
          If it goes to "not supported", your syntax for that item is incorrect. Try reading through these posts:







          Comment

          • aspenbr
            Junior Member
            • Oct 2008
            • 8

            #6
            Hello

            Thansk very much tchjts1

            I have created the file FileReg.txt with

            [Cpu]
            key: perf_counter[\Processor(_Total)\% Processor Time]


            [Memory]
            key: perf_counter[\Memory\Pages/sec]
            key: perf_counter[\Memory\Page Reads/sec]
            key: perf_counter[\Memory\Pages Output/sec]
            key: perf_counter[\Memory\Page Writes/sec]
            key: perf_counter[\Paging File(_Total)\% Usage]
            key: perf_counter[\Paging File(_Total)\% Usage Peak]


            [Disk]
            key: perf_counter[\PhysicalDisk(_Total)\Current Disk Queue Length]
            key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk sec/Read]
            key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk sec/Write]
            key: perf_counter[\PhysicalDisk(_Total)\Disk Transfers/sec]
            key: perf_counter[\PhysicalDisk(_Total)\Disk Reads/sec]
            key: perf_counter[\PhysicalDisk(_Total)\Disk Writes/sec]
            key: perf_counter[\PhysicalDisk(_Total)\Disk Bytes/sec]
            key: perf_counter[\PhysicalDisk(_Total)\Disk Read Bytes/sec]
            key: perf_counter[\PhysicalDisk(_Total)\Disk Write Bytes/sec]
            key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk Bytes/Transfer]
            key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk Bytes/Read]
            key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk Bytes/Write]
            key: perf_counter[\PhysicalDisk(_Total)\Avg. Disk Queue Length]


            [Dns]
            key: perf_counter[\DNS\Total Query Received]


            [System]
            key: perf_counter[\System\System Up Time

            Type comando type typeperf -qx , not show me any message or event on Event Viewer. How the Windows Server recognize the perf_counter ?

            For revolve this problem I change value Type of Information for Numeric (float)

            Log from zabbix_server.log show

            2677:20100412:092535.064 Item [Windows2003-Entererf_counter[\Paging File(_Total)\% Usage]] error: Type of received value [6.975301] is not suitable for value type [Numeric (integer 64bit)]
            2678:20100412:092535.393 Item [Windows2003-Entererf_counter[\Paging File(_Total)\% Usage Peak]] error: Type of received value [7.490031] is not suitable for value type [Numeric (integer 64bit)]
            2700:20100412:092538.563 Parameter [22535][Windows2003-Entererf_counter[\Memory\Page Reads/sec]] became supported by agent
            2687:20100412:092548.411 Sending list of active checks to Entererf_counter[\Memory\Page Reads/sec]] error: Type of received value [17.029777] is not suitable for value type [Numeric (integer 64bit)]

            After the messages stopped.

            The graph works fine !!!

            Comment

            • tchjts1
              Senior Member
              • May 2008
              • 1605

              #7
              typeperf.exe is on 2003 server platform. Depending on what OS you are working with, it may be mnissing. Youc ould simply copy it into a directory that is in your system path and then use it.

              I'm not sure what you mean that you have created the file filereg.txt. Where are you putting this file? Are you adding userparameters to each hosts zabbix_agentd.conf file? if so, that is not needed for windows performance counters.

              Originally posted by aspenbr
              How the Windows Server recognize the perf_counter ?
              Windows already reports all of these performance counters natively to the systems PerfMon function. Zabbix simply takes advantage of this available information.

              Comment

              • aspenbr
                Junior Member
                • Oct 2008
                • 8

                #8
                There are two method for work registers ?

                First adding register in file agentd.conf

                And second method, using command typeperf ?

                This is ocrrect ?

                Thanks .

                Comment

                • tchjts1
                  Senior Member
                  • May 2008
                  • 1605

                  #9
                  You need to look at the examples that are provided in the links a few messages back.

                  if you are working with perf counters that are from the output of the typeperf command, you simply enter them in the Zabbix frontend as items and they will work. There is no need to add them to each hosts zabbix-agentd.conf file.

                  And if they are an item that you want to apply to all of your windows servers, then add the item to Template_Windows and that will take affect to all servers that have that template assigned.

                  Comment

                  • harmonica
                    Senior Member
                    • Jan 2009
                    • 251

                    #10
                    Originally posted by aspenbr
                    There are two method for work registers ?

                    First adding register in file agentd.conf

                    And second method, using command typeperf ?

                    This is ocrrect ?

                    Thanks .
                    Another example:

                    perf_counter[\Memory\Pages Input/sec]
                    Attached Files

                    Comment

                    Working...