HOST-RESOURCES-MIB
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:51k
源码类别:

SNMP编程

开发平台:

C/C++

  1. -- Changes to rfc1514 (Host Resources MIB):
  2. --     Added the IMPORT for mib-2.
  3. -- dperkins@scruznet.com
  4. HOST-RESOURCES-MIB DEFINITIONS ::= BEGIN
  5.    IMPORTS
  6.        OBJECT-TYPE               FROM RFC-1212
  7.        DisplayString, mib-2      FROM RFC1213-MIB
  8.        TimeTicks,
  9.        Counter, Gauge            FROM RFC1155-SMI;
  10.    host     OBJECT IDENTIFIER ::= { mib-2 25 }
  11.    hrSystem        OBJECT IDENTIFIER ::= { host 1 }
  12.    hrStorage       OBJECT IDENTIFIER ::= { host 2 }
  13.    hrDevice        OBJECT IDENTIFIER ::= { host 3 }
  14.    hrSWRun         OBJECT IDENTIFIER ::= { host 4 }
  15.    hrSWRunPerf     OBJECT IDENTIFIER ::= { host 5 }
  16.    hrSWInstalled   OBJECT IDENTIFIER ::= { host 6 }
  17.    -- textual conventions
  18.    -- a truth value
  19.    Boolean ::=   INTEGER { true(1), false(2) }
  20.    -- memory size, expressed in units of 1024bytes
  21.    KBytes ::=    INTEGER (0..2147483647)
  22.    -- This textual convention is intended to identify the manufacturer,
  23.    -- model, and version of a specific hardware or software product.
  24.    -- It is suggested that these OBJECT IDENTIFIERs are allocated such
  25.    -- that all products from a particular manufacturer are registered
  26.    -- under a subtree distinct to that manufacturer.  In addition, all
  27.    -- versions of a product should be registered under a subtree
  28.    -- distinct to that product.  With this strategy, a management
  29.    -- station may uniquely determine the manufacturer and/or model of a
  30.    -- product whose productID is unknown to the management station.
  31.    -- Objects of this type may be useful for inventory purposes or for
  32.    -- automatically detecting incompatibilities or version mismatches
  33.    -- between various hardware and software components on a system.
  34.    ProductID ::= OBJECT IDENTIFIER
  35.    -- unknownProduct will be used for any unknown ProductID
  36.    -- unknownProduct OBJECT IDENTIFIER ::= { 0 0 }
  37.    -- For example, the product ID for the ACME 4860 66MHz clock doubled
  38.    -- processor might be:
  39.    -- enterprises.acme.acmeProcessors.a4860DX2.MHz66
  40.    -- A software product might be registered as:
  41.    -- enterprises.acme.acmeOperatingSystems.acmeDOS.six(6).one(1)
  42.    DateAndTime ::= OCTET STRING (SIZE (8 | 11))
  43.    --        A date-time specification for the local time of day.
  44.    --        This data type is intended to provide a consistent
  45.    --        method of reporting date information.
  46.    --
  47.    --            field  octets  contents                  range
  48.    --            _____  ______  ________                  _____
  49.    --              1      1-2   year                      0..65536
  50.    --                           (in network byte order)
  51.    --              2       3    month                     1..12
  52.    --              3       4    day                       1..31
  53.    --              4       5    hour                      0..23
  54.    --              5       6    minutes                   0..59
  55.    --              6       7    seconds                   0..60
  56.    --                           (use 60 for leap-second)
  57.    --              7       8    deci-seconds              0..9
  58.    --              8       9    direction from UTC        "+" / "-"
  59.    --                           (in ascii notation)
  60.    --              9      10    hours from UTC            0..11
  61.    --             10      11    minutes from UTC          0..59
  62.    --
  63.    --            Note that if only local time is known, then
  64.    --            timezone information (fields 8-10) is not present.
  65.    InternationalDisplayString ::= OCTET STRING
  66.    --  This data type is used to model textual information in some
  67.    --  character set.  A network management station should use a local
  68.    --  algorithm to determine which character set is in use and how it
  69.    --  should be displayed.  Note that this character set may be encoded
  70.    --  with more than one octet per symbol, but will most often be NVT
  71.    --  ASCII.
  72.    -- The Host Resources System Group
  73.    --
  74.    -- Implementation of this group is mandatory for all host systems.
  75.    hrSystemUptime OBJECT-TYPE
  76.        SYNTAX TimeTicks
  77.        ACCESS read-only
  78.        STATUS mandatory
  79.        DESCRIPTION
  80.               "The amount of time since this host was last
  81.               initialized.  Note that this is different from
  82.               sysUpTime in MIB-II [3] because sysUpTime is the
  83.               uptime of the network management portion of the
  84.               system."
  85.        ::= { hrSystem 1 }
  86.    hrSystemDate OBJECT-TYPE
  87.        SYNTAX DateAndTime
  88.        ACCESS read-write
  89.        STATUS mandatory
  90.        DESCRIPTION
  91.               "The host's notion of the local date and time of
  92.               day."
  93.        ::= { hrSystem 2 }
  94.    hrSystemInitialLoadDevice OBJECT-TYPE
  95.        SYNTAX INTEGER (1..2147483647)
  96.        ACCESS read-write
  97.        STATUS mandatory
  98.        DESCRIPTION
  99.               "The index of the hrDeviceEntry for the device from
  100.               which this host is configured to load its initial
  101.               operating system configuration."
  102.        ::= { hrSystem 3 }
  103.    hrSystemInitialLoadParameters OBJECT-TYPE
  104.        SYNTAX InternationalDisplayString (SIZE (0..128))
  105.        ACCESS read-write
  106.        STATUS mandatory
  107.        DESCRIPTION
  108.               "This object contains the parameters (e.g. a
  109.               pathname and parameter) supplied to the load device
  110.               when requesting the initial operating system
  111.               configuration from that device."
  112.        ::= { hrSystem 4 }
  113.    hrSystemNumUsers OBJECT-TYPE
  114.        SYNTAX Gauge
  115.        ACCESS read-only
  116.        STATUS mandatory
  117.        DESCRIPTION
  118.               "The number of user sessions for which this host is
  119.               storing state information.  A session is a
  120.               collection of processes requiring a single act of
  121.               user authentication and possibly subject to
  122.               collective job control."
  123.        ::= { hrSystem 5 }
  124.    hrSystemProcesses OBJECT-TYPE
  125.        SYNTAX Gauge
  126.        ACCESS read-only
  127.        STATUS mandatory
  128.        DESCRIPTION
  129.               "The number of process contexts currently loaded or
  130.               running on this system."
  131.        ::= { hrSystem 6 }
  132.    hrSystemMaxProcesses OBJECT-TYPE
  133.        SYNTAX INTEGER (0..2147483647)
  134.        ACCESS read-only
  135.        STATUS mandatory
  136.        DESCRIPTION
  137.               "The maximum number of process contexts this system
  138.               can support.  If there is no fixed maximum, the
  139.               value should be zero.  On systems that have a fixed
  140.               maximum, this object can help diagnose failures
  141.               that occur when this maximum is reached."
  142.        ::= { hrSystem 7 }
  143.    -- The Host Resources Storage Group
  144.    --
  145.    -- Implementation of this group is mandatory for all host systems.
  146.    -- Registration for some storage types, for use with hrStorageType
  147.    hrStorageTypes          OBJECT IDENTIFIER ::= { hrStorage 1 }
  148.    hrStorageOther          OBJECT IDENTIFIER ::= { hrStorageTypes 1 }
  149.    hrStorageRam            OBJECT IDENTIFIER ::= { hrStorageTypes 2 }
  150.    -- hrStorageVirtualMemory is temporary storage of swapped
  151.    -- or paged memory
  152.    hrStorageVirtualMemory  OBJECT IDENTIFIER ::= { hrStorageTypes 3 }
  153.    hrStorageFixedDisk      OBJECT IDENTIFIER ::= { hrStorageTypes 4 }
  154.    hrStorageRemovableDisk  OBJECT IDENTIFIER ::= { hrStorageTypes 5 }
  155.    hrStorageFloppyDisk     OBJECT IDENTIFIER ::= { hrStorageTypes 6 }
  156.    hrStorageCompactDisc    OBJECT IDENTIFIER ::= { hrStorageTypes 7 }
  157.    hrStorageRamDisk        OBJECT IDENTIFIER ::= { hrStorageTypes 8 }
  158.    hrMemorySize OBJECT-TYPE
  159.        SYNTAX KBytes
  160.        ACCESS read-only
  161.        STATUS mandatory
  162.        DESCRIPTION
  163.               "The amount of physical main memory contained by
  164.               the host."
  165.        ::= { hrStorage 2 }
  166.    hrStorageTable OBJECT-TYPE
  167.        SYNTAX SEQUENCE OF HrStorageEntry
  168.        ACCESS not-accessible
  169.        STATUS mandatory
  170.        DESCRIPTION
  171.               "The (conceptual) table of logical storage areas on
  172.               the host.
  173.               An entry shall be placed in the storage table for
  174.               each logical area of storage that is allocated and
  175.               has fixed resource limits.  The amount of storage
  176.               represented in an entity is the amount actually
  177.               usable by the requesting entity, and excludes loss
  178.               due to formatting or file system reference
  179.               information.
  180.               These entries are associated with logical storage
  181.               areas, as might be seen by an application, rather
  182.               than physical storage entities which are typically
  183.               seen by an operating system.  Storage such as tapes
  184.               and floppies without file systems on them are
  185.               typically not allocated in chunks by the operating
  186.               system to requesting applications, and therefore
  187.               shouldn't appear in this table.  Examples of valid
  188.               storage for this table include disk partitions,
  189.               file systems, ram (for some architectures this is
  190.               further segmented into regular memory, extended
  191.               memory, and so on), backing store for virtual
  192.               memory (`swap space').
  193.               This table is intended to be a useful diagnostic
  194.               for `out of memory' and `out of buffers' types of
  195.               failures.  In addition, it can be a useful
  196.               performance monitoring tool for tracking memory,
  197.               disk, or buffer usage."
  198.        ::= { hrStorage 3 }
  199.    hrStorageEntry OBJECT-TYPE
  200.        SYNTAX HrStorageEntry
  201.        ACCESS not-accessible
  202.        STATUS mandatory
  203.        DESCRIPTION
  204.               "A (conceptual) entry for one logical storage area
  205.               on the host.  As an example, an instance of the
  206.               hrStorageType object might be named
  207.               hrStorageType.3"
  208.        INDEX { hrStorageIndex }
  209.        ::= { hrStorageTable 1 }
  210.    HrStorageEntry ::= SEQUENCE {
  211.            hrStorageIndex               INTEGER,
  212.            hrStorageType                OBJECT IDENTIFIER,
  213.            hrStorageDescr               DisplayString,
  214.            hrStorageAllocationUnits     INTEGER,
  215.            hrStorageSize                INTEGER,
  216.            hrStorageUsed                INTEGER,
  217.            hrStorageAllocationFailures  Counter
  218.        }
  219.    hrStorageIndex OBJECT-TYPE
  220.        SYNTAX INTEGER (1..2147483647)
  221.        ACCESS read-only
  222.        STATUS mandatory
  223.        DESCRIPTION
  224.               "A unique value for each logical storage area
  225.               contained by the host."
  226.        ::= { hrStorageEntry 1 }
  227.    hrStorageType OBJECT-TYPE
  228.        SYNTAX OBJECT IDENTIFIER
  229.        ACCESS read-only
  230.        STATUS mandatory
  231.        DESCRIPTION
  232.               "The type of storage represented by this entry."
  233.        ::= { hrStorageEntry 2 }
  234.    hrStorageDescr OBJECT-TYPE
  235.        SYNTAX DisplayString
  236.        ACCESS read-only
  237.        STATUS mandatory
  238.        DESCRIPTION
  239.               "A description of the type and instance of the
  240.               storage described by this entry."
  241.        ::= { hrStorageEntry 3 }
  242.    hrStorageAllocationUnits OBJECT-TYPE
  243.        SYNTAX      INTEGER (1..2147483647)
  244.        ACCESS      read-only
  245.        STATUS      mandatory
  246.        DESCRIPTION
  247.                "The size, in bytes, of the data objects allocated
  248.                from this pool.  If this entry is monitoring
  249.                sectors, blocks, buffers, or packets, for example,
  250.                this number will commonly be greater than one.
  251.                Otherwise this number will typically be one."
  252.        ::= { hrStorageEntry 4 }
  253.    hrStorageSize OBJECT-TYPE
  254.        SYNTAX INTEGER (0..2147483647)
  255.        ACCESS read-write
  256.        STATUS mandatory
  257.        DESCRIPTION
  258.               "The size of the storage represented by this entry,
  259.               in units of hrStorageAllocationUnits."
  260.        ::= { hrStorageEntry 5 }
  261.    hrStorageUsed OBJECT-TYPE
  262.        SYNTAX INTEGER (0..2147483647)
  263.        ACCESS read-only
  264.        STATUS mandatory
  265.        DESCRIPTION
  266.               "The amount of the storage represented by this
  267.               entry that is allocated, in units of
  268.               hrStorageAllocationUnits."
  269.        ::= { hrStorageEntry 6 }
  270.    hrStorageAllocationFailures OBJECT-TYPE
  271.        SYNTAX Counter
  272.        ACCESS read-only
  273.        STATUS mandatory
  274.        DESCRIPTION
  275.               "The number of requests for storage represented by
  276.               this entry that could not be honored due to not
  277.               enough storage.  It should be noted that as this
  278.               object has a SYNTAX of Counter, that it does not
  279.               have a defined initial value.  However, it is
  280.               recommended that this object be initialized to
  281.               zero."
  282.        ::= { hrStorageEntry 7 }
  283.    -- The Host Resources Device Group
  284.    --
  285.    -- Implementation of this group is mandatory for all host systems.
  286.    --
  287.    -- The device group is useful for identifying and diagnosing the
  288.    -- devices on a system.  The hrDeviceTable contains common
  289.    -- information for any type of device.  In addition, some devices
  290.    -- have device-specific tables for more detailed information.  More
  291.    -- such tables may be defined in the future for other device types.
  292.    -- Registration for some device types, for use with hrDeviceType
  293.    hrDeviceTypes             OBJECT IDENTIFIER ::= { hrDevice 1 }
  294.    hrDeviceOther             OBJECT IDENTIFIER ::= { hrDeviceTypes 1 }
  295.    hrDeviceUnknown           OBJECT IDENTIFIER ::= { hrDeviceTypes 2 }
  296.    hrDeviceProcessor         OBJECT IDENTIFIER ::= { hrDeviceTypes 3 }
  297.    hrDeviceNetwork           OBJECT IDENTIFIER ::= { hrDeviceTypes 4 }
  298.    hrDevicePrinter           OBJECT IDENTIFIER ::= { hrDeviceTypes 5 }
  299.    hrDeviceDiskStorage       OBJECT IDENTIFIER ::= { hrDeviceTypes 6 }
  300.    hrDeviceVideo             OBJECT IDENTIFIER ::= { hrDeviceTypes 10 }
  301.    hrDeviceAudio             OBJECT IDENTIFIER ::= { hrDeviceTypes 11 }
  302.    hrDeviceCoprocessor       OBJECT IDENTIFIER ::= { hrDeviceTypes 12 }
  303.    hrDeviceKeyboard          OBJECT IDENTIFIER ::= { hrDeviceTypes 13 }
  304.    hrDeviceModem             OBJECT IDENTIFIER ::= { hrDeviceTypes 14 }
  305.    hrDeviceParallelPort      OBJECT IDENTIFIER ::= { hrDeviceTypes 15 }
  306.    hrDevicePointing          OBJECT IDENTIFIER ::= { hrDeviceTypes 16 }
  307.    hrDeviceSerialPort        OBJECT IDENTIFIER ::= { hrDeviceTypes 17 }
  308.    hrDeviceTape              OBJECT IDENTIFIER ::= { hrDeviceTypes 18 }
  309.    hrDeviceClock             OBJECT IDENTIFIER ::= { hrDeviceTypes 19 }
  310.    hrDeviceVolatileMemory    OBJECT IDENTIFIER ::= { hrDeviceTypes 20 }
  311.    hrDeviceNonVolatileMemory OBJECT IDENTIFIER ::= { hrDeviceTypes 21 }
  312.    hrDeviceTable OBJECT-TYPE
  313.        SYNTAX SEQUENCE OF HrDeviceEntry
  314.        ACCESS not-accessible
  315.        STATUS mandatory
  316.        DESCRIPTION
  317.               "The (conceptual) table of devices contained by the
  318.               host."
  319.        ::= { hrDevice 2 }
  320.    hrDeviceEntry OBJECT-TYPE
  321.        SYNTAX HrDeviceEntry
  322.        ACCESS not-accessible
  323.        STATUS mandatory
  324.        DESCRIPTION
  325.               "A (conceptual) entry for one device contained by
  326.               the host.  As an example, an instance of the
  327.               hrDeviceType object might be named hrDeviceType.3"
  328.        INDEX { hrDeviceIndex }
  329.        ::= { hrDeviceTable 1 }
  330.    HrDeviceEntry ::= SEQUENCE {
  331.            hrDeviceIndex           INTEGER,
  332.            hrDeviceType            OBJECT IDENTIFIER,
  333.            hrDeviceDescr           DisplayString,
  334.            hrDeviceID              ProductID,
  335.            hrDeviceStatus          INTEGER,
  336.            hrDeviceErrors          Counter
  337.        }
  338.    hrDeviceIndex OBJECT-TYPE
  339.        SYNTAX INTEGER (1..2147483647)
  340.        ACCESS read-only
  341.        STATUS mandatory
  342.        DESCRIPTION
  343.               "A unique value for each device contained by the
  344.               host.  The value for each device must remain
  345.               constant at least from one re-initialization of the
  346.               agent to the next re-initialization."
  347.        ::= { hrDeviceEntry 1 }
  348.    hrDeviceType OBJECT-TYPE
  349.        SYNTAX OBJECT IDENTIFIER
  350.        ACCESS read-only
  351.        STATUS mandatory
  352.        DESCRIPTION
  353.               "An indication of the type of device.
  354.               If this value is `hrDeviceProcessor { hrDeviceTypes
  355.               3 }' then an entry exists in the hrProcessorTable
  356.               which corresponds to this device.
  357.               If this value is `hrDeviceNetwork { hrDeviceTypes 4
  358.               }', then an entry exists in the hrNetworkTable
  359.               which corresponds to this device.
  360.               If this value is `hrDevicePrinter { hrDeviceTypes 5
  361.               }', then an entry exists in the hrPrinterTable
  362.               which corresponds to this device.
  363.               If this value is `hrDeviceDiskStorage {
  364.               hrDeviceTypes 6 }', then an entry exists in the
  365.               hrDiskStorageTable which corresponds to this
  366.               device."
  367.        ::= { hrDeviceEntry 2 }
  368.    hrDeviceDescr OBJECT-TYPE
  369.        SYNTAX DisplayString (SIZE (0..64))
  370.        ACCESS read-only
  371.        STATUS mandatory
  372.        DESCRIPTION
  373.               "A textual description of this device, including
  374.               the device's manufacturer and revision, and
  375.               optionally, its serial number."
  376.        ::= { hrDeviceEntry 3 }
  377.    hrDeviceID OBJECT-TYPE
  378.        SYNTAX ProductID
  379.        ACCESS read-only
  380.        STATUS mandatory
  381.        DESCRIPTION
  382.               "The product ID for this device."
  383.        ::= { hrDeviceEntry 4 }
  384.    hrDeviceStatus OBJECT-TYPE
  385.         SYNTAX  INTEGER {
  386.              unknown(1),
  387.              running(2),
  388.              warning(3),
  389.              testing(4),
  390.              down(5)
  391.         }
  392.         ACCESS  read-only
  393.         STATUS  mandatory
  394.         DESCRIPTION
  395.               "The current operational state of the device
  396.               described by this row of the table.  A value
  397.               unknown(1) indicates that the current state of the
  398.               device is unknown.  running(2) indicates that the
  399.               device is up and running and that no unusual error
  400.               conditions are known.  The warning(3) state
  401.               indicates that agent has been informed of an
  402.               unusual error condition by the operational software
  403.               (e.g., a disk device driver) but that the device is
  404.               still 'operational'.  An example would be high
  405.               number of soft errors on a disk.  A value of
  406.               testing(4), indicates that the device is not
  407.               available for use because it is in the testing
  408.               state.  The state of down(5) is used only when the
  409.               agent has been informed that the device is not
  410.               available for any use."
  411.         ::= { hrDeviceEntry 5 }
  412.    hrDeviceErrors OBJECT-TYPE
  413.        SYNTAX Counter
  414.        ACCESS read-only
  415.        STATUS mandatory
  416.        DESCRIPTION
  417.                "The number of errors detected on this device.  It
  418.                should be noted that as this object has a SYNTAX
  419.                of Counter, that it does not have a defined
  420.                initial value.  However, it is recommended that
  421.                this object be initialized to zero."
  422.        ::= { hrDeviceEntry 6 }
  423.    hrProcessorTable OBJECT-TYPE
  424.        SYNTAX SEQUENCE OF HrProcessorEntry
  425.        ACCESS not-accessible
  426.        STATUS mandatory
  427.        DESCRIPTION
  428.               "The (conceptual) table of processors contained by
  429.               the host.
  430.               Note that this table is potentially sparse: a
  431.               (conceptual) entry exists only if the correspondent
  432.               value of the hrDeviceType object is
  433.               `hrDeviceProcessor'."
  434.        ::= { hrDevice 3 }
  435.    hrProcessorEntry OBJECT-TYPE
  436.        SYNTAX HrProcessorEntry
  437.        ACCESS not-accessible
  438.        STATUS mandatory
  439.        DESCRIPTION
  440.               "A (conceptual) entry for one processor contained
  441.               by the host.  The hrDeviceIndex in the index
  442.               represents the entry in the hrDeviceTable that
  443.               corresponds to the hrProcessorEntry.
  444.               As an example of how objects in this table are
  445.               named, an instance of the hrProcessorFrwID object
  446.               might be named hrProcessorFrwID.3"
  447.        INDEX { hrDeviceIndex }
  448.        ::= { hrProcessorTable 1 }
  449.    HrProcessorEntry ::= SEQUENCE {
  450.            hrProcessorFrwID            ProductID,
  451.            hrProcessorLoad             INTEGER
  452.        }
  453.    hrProcessorFrwID OBJECT-TYPE
  454.        SYNTAX ProductID
  455.        ACCESS read-only
  456.        STATUS mandatory
  457.        DESCRIPTION
  458.               "The product ID of the firmware associated with the
  459.               processor."
  460.        ::= { hrProcessorEntry 1 }
  461.    hrProcessorLoad OBJECT-TYPE
  462.        SYNTAX INTEGER (0..100)
  463.        ACCESS read-only
  464.        STATUS mandatory
  465.        DESCRIPTION
  466.               "The average, over the last minute, of the
  467.               percentage of time that this processor was not
  468.               idle."
  469.        ::= { hrProcessorEntry 2 }
  470.    hrNetworkTable OBJECT-TYPE
  471.        SYNTAX SEQUENCE OF HrNetworkEntry
  472.        ACCESS not-accessible
  473.        STATUS mandatory
  474.        DESCRIPTION
  475.               "The (conceptual) table of network devices
  476.               contained by the host.
  477.               Note that this table is potentially sparse: a
  478.               (conceptual) entry exists only if the correspondent
  479.               value of the hrDeviceType object is
  480.               `hrDeviceNetwork'."
  481.        ::= { hrDevice 4 }
  482.    hrNetworkEntry OBJECT-TYPE
  483.        SYNTAX HrNetworkEntry
  484.        ACCESS not-accessible
  485.        STATUS mandatory
  486.        DESCRIPTION
  487.               "A (conceptual) entry for one network device
  488.               contained by the host.  The hrDeviceIndex in the
  489.               index represents the entry in the hrDeviceTable
  490.               that corresponds to the hrNetworkEntry.
  491.               As an example of how objects in this table are
  492.               named, an instance of the hrNetworkIfIndex object
  493.               might be named hrNetworkIfIndex.3"
  494.        INDEX { hrDeviceIndex }
  495.        ::= { hrNetworkTable 1 }
  496.    HrNetworkEntry ::= SEQUENCE {
  497.            hrNetworkIfIndex    INTEGER
  498.        }
  499.    hrNetworkIfIndex OBJECT-TYPE
  500.        SYNTAX INTEGER
  501.        ACCESS read-only
  502.        STATUS mandatory
  503.        DESCRIPTION
  504.               "The value of ifIndex which corresponds to this
  505.               network device."
  506.        ::= { hrNetworkEntry 1 }
  507.    hrPrinterTable OBJECT-TYPE
  508.        SYNTAX SEQUENCE OF HrPrinterEntry
  509.        ACCESS not-accessible
  510.        STATUS mandatory
  511.        DESCRIPTION
  512.               "The (conceptual) table of printers local to the
  513.               host.
  514.               Note that this table is potentially sparse: a
  515.               (conceptual) entry exists only if the correspondent
  516.               value of the hrDeviceType object is
  517.               `hrDevicePrinter'."
  518.        ::= { hrDevice 5 }
  519.    hrPrinterEntry OBJECT-TYPE
  520.        SYNTAX HrPrinterEntry
  521.        ACCESS not-accessible
  522.        STATUS mandatory
  523.        DESCRIPTION
  524.               "A (conceptual) entry for one printer local to the
  525.               host.  The hrDeviceIndex in the index represents
  526.               the entry in the hrDeviceTable that corresponds to
  527.               the hrPrinterEntry.
  528.               As an example of how objects in this table are
  529.               named, an instance of the hrPrinterStatus object
  530.               might be named hrPrinterStatus.3"
  531.        INDEX { hrDeviceIndex }
  532.        ::= { hrPrinterTable 1 }
  533.    HrPrinterEntry ::= SEQUENCE {
  534.            hrPrinterStatus             INTEGER,
  535.            hrPrinterDetectedErrorState OCTET STRING
  536.        }
  537.    hrPrinterStatus OBJECT-TYPE
  538.        SYNTAX INTEGER {
  539.            other(1),
  540.            unknown(2),
  541.            idle(3),
  542.            printing(4),
  543.            warmup(5)
  544.        }
  545.        ACCESS read-only
  546.        STATUS mandatory
  547.        DESCRIPTION
  548.                "The current status of this printer device.  When
  549.                in the idle(1), printing(2), or warmup(3) state,
  550.                the corresponding hrDeviceStatus should be
  551.                running(2) or warning(3).  When in the unknown
  552.                state, the corresponding hrDeviceStatus should be
  553.                unknown(1)."
  554.        ::= { hrPrinterEntry 1 }
  555.    hrPrinterDetectedErrorState OBJECT-TYPE
  556.        SYNTAX OCTET STRING
  557.        ACCESS read-only
  558.        STATUS mandatory
  559.        DESCRIPTION
  560.                "This object represents any error conditions
  561.                detected by the printer.  The error conditions are
  562.                encoded as bits in an octet string, with the
  563.                following definitions:
  564.                     Condition         Bit #    hrDeviceStatus
  565.                     lowPaper          0        warning(3)
  566.                     noPaper           1        down(5)
  567.                     lowToner          2        warning(3)
  568.                     noToner           3        down(5)
  569.                     doorOpen          4        down(5)
  570.                     jammed            5        down(5)
  571.                     offline           6        down(5)
  572.                     serviceRequested  7        warning(3)
  573.                If multiple conditions are currently detected and
  574.                the hrDeviceStatus would not otherwise be
  575.                unknown(1) or testing(4), the hrDeviceStatus shall
  576.                correspond to the worst state of those indicated,
  577.                where down(5) is worse than warning(3) which is
  578.                worse than running(2).
  579.                Bits are numbered starting with the most
  580.                significant bit of the first byte being bit 0, the
  581.                least significant bit of the first byte being bit
  582.                7, the most significant bit of the second byte
  583.                being bit 8, and so on.  A one bit encodes that
  584.                the condition was detected, while a zero bit
  585.                encodes that the condition was not detected.
  586.                This object is useful for alerting an operator to
  587.                specific warning or error conditions that may
  588.                occur, especially those requiring human
  589.                intervention."
  590.        ::= { hrPrinterEntry 2 }
  591.    hrDiskStorageTable OBJECT-TYPE
  592.        SYNTAX SEQUENCE OF HrDiskStorageEntry
  593.        ACCESS not-accessible
  594.        STATUS mandatory
  595.        DESCRIPTION
  596.               "The (conceptual) table of long-term storage
  597.               devices contained by the host.  In particular, disk
  598.               devices accessed remotely over a network are not
  599.               included here.
  600.               Note that this table is potentially sparse: a
  601.               (conceptual) entry exists only if the correspondent
  602.               value of the hrDeviceType object is
  603.               `hrDeviceDiskStorage'."
  604.        ::= { hrDevice 6 }
  605.    hrDiskStorageEntry OBJECT-TYPE
  606.        SYNTAX HrDiskStorageEntry
  607.        ACCESS not-accessible
  608.        STATUS mandatory
  609.        DESCRIPTION
  610.               "A (conceptual) entry for one long-term storage
  611.               device contained by the host.  The hrDeviceIndex in
  612.               the index represents the entry in the hrDeviceTable
  613.               that corresponds to the hrDiskStorageEntry. As an
  614.               example, an instance of the hrDiskStorageCapacity
  615.               object might be named hrDiskStorageCapacity.3"
  616.        INDEX { hrDeviceIndex }
  617.        ::= { hrDiskStorageTable 1 }
  618.    HrDiskStorageEntry ::= SEQUENCE {
  619.            hrDiskStorageAccess         INTEGER,
  620.            hrDiskStorageMedia          INTEGER,
  621.            hrDiskStorageRemoveble      Boolean,
  622.            hrDiskStorageCapacity       KBytes
  623.        }
  624.    hrDiskStorageAccess OBJECT-TYPE
  625.        SYNTAX INTEGER {
  626.                        readWrite(1),
  627.                        readOnly(2)
  628.                }
  629.        ACCESS read-only
  630.        STATUS mandatory
  631.        DESCRIPTION
  632.               "An indication if this long-term storage device is
  633.               readable and writable or only readable.  This
  634.               should reflect the media type, any write-protect
  635.               mechanism, and any device configuration that
  636.               affects the entire device."
  637.        ::= { hrDiskStorageEntry 1 }
  638.    hrDiskStorageMedia OBJECT-TYPE
  639.        SYNTAX INTEGER {
  640.                    other(1),
  641.                    unknown(2),
  642.                    hardDisk(3),
  643.                    floppyDisk(4),
  644.                    opticalDiskROM(5),
  645.                    opticalDiskWORM(6),     -- Write Once Read Many
  646.                    opticalDiskRW(7),
  647.                    ramDisk(8)
  648.                }
  649.        ACCESS read-only
  650.        STATUS mandatory
  651.        DESCRIPTION
  652.               "An indication of the type of media used in this
  653.               long-term storage device."
  654.        ::= { hrDiskStorageEntry 2 }
  655.    hrDiskStorageRemoveble OBJECT-TYPE
  656.        SYNTAX Boolean
  657.        ACCESS read-only
  658.        STATUS mandatory
  659.        DESCRIPTION
  660.                "Denotes whether or not the disk media may be
  661.                removed from the drive."
  662.        ::= { hrDiskStorageEntry 3 }
  663.    hrDiskStorageCapacity OBJECT-TYPE
  664.        SYNTAX KBytes
  665.        ACCESS read-only
  666.        STATUS mandatory
  667.        DESCRIPTION
  668.               "The total size for this long-term storage device."
  669.        ::= { hrDiskStorageEntry 4 }
  670.    hrPartitionTable OBJECT-TYPE
  671.        SYNTAX SEQUENCE OF HrPartitionEntry
  672.        ACCESS not-accessible
  673.        STATUS mandatory
  674.        DESCRIPTION
  675.               "The (conceptual) table of partitions for long-term
  676.               storage devices contained by the host.  In
  677.               particular, partitions accessed remotely over a
  678.               network are not included here."
  679.        ::= { hrDevice 7 }
  680.    hrPartitionEntry OBJECT-TYPE
  681.        SYNTAX HrPartitionEntry
  682.        ACCESS not-accessible
  683.        STATUS mandatory
  684.        DESCRIPTION
  685.               "A (conceptual) entry for one partition.  The
  686.               hrDeviceIndex in the index represents the entry in
  687.               the hrDeviceTable that corresponds to the
  688.               hrPartitionEntry.
  689.               As an example of how objects in this table are
  690.               named, an instance of the hrPartitionSize object
  691.               might be named hrPartitionSize.3.1"
  692.        INDEX { hrDeviceIndex, hrPartitionIndex }
  693.        ::= { hrPartitionTable 1 }
  694.    HrPartitionEntry ::= SEQUENCE {
  695.            hrPartitionIndex                INTEGER,
  696.            hrPartitionLabel                InternationalDisplayString,
  697.            hrPartitionID                   OCTET STRING,
  698.            hrPartitionSize                 KBytes,
  699.            hrPartitionFSIndex              INTEGER
  700.        }
  701.    hrPartitionIndex OBJECT-TYPE
  702.        SYNTAX INTEGER (1..2147483647)
  703.        ACCESS read-only
  704.        STATUS mandatory
  705.        DESCRIPTION
  706.               "A unique value for each partition on this long-
  707.               term storage device.  The value for each long-term
  708.               storage device must remain constant at least from
  709.               one re-initialization of the agent to the next re-
  710.               initialization."
  711.        ::= { hrPartitionEntry 1 }
  712.    hrPartitionLabel OBJECT-TYPE
  713.        SYNTAX InternationalDisplayString (SIZE (0..128))
  714.        ACCESS read-only
  715.        STATUS mandatory
  716.        DESCRIPTION
  717.               "A textual description of this partition."
  718.        ::= { hrPartitionEntry 2 }
  719.    hrPartitionID OBJECT-TYPE
  720.        SYNTAX OCTET STRING
  721.        ACCESS read-only
  722.        STATUS mandatory
  723.        DESCRIPTION
  724.               "A descriptor which uniquely represents this
  725.               partition to the responsible operating system.  On
  726.               some systems, this might take on a binary
  727.               representation."
  728.        ::= { hrPartitionEntry 3 }
  729.    hrPartitionSize OBJECT-TYPE
  730.        SYNTAX KBytes
  731.        ACCESS read-only
  732.        STATUS mandatory
  733.        DESCRIPTION
  734.                "The size of this partition."
  735.        ::= { hrPartitionEntry 4 }
  736.    hrPartitionFSIndex OBJECT-TYPE
  737.        SYNTAX INTEGER (0..2147483647)
  738.        ACCESS read-only
  739.        STATUS mandatory
  740.        DESCRIPTION
  741.                "The index of the file system mounted on this
  742.                partition.  If no file system is mounted on this
  743.                partition, then this value shall be zero.  Note
  744.                that multiple partitions may point to one file
  745.                system, denoting that that file system resides on
  746.                those partitions.  Multiple file systems may not
  747.                reside on one partition."
  748.        ::= { hrPartitionEntry 5 }
  749.    -- The File System Table
  750.    hrFSTable OBJECT-TYPE
  751.        SYNTAX SEQUENCE OF HrFSEntry
  752.        ACCESS not-accessible
  753.        STATUS mandatory
  754.        DESCRIPTION
  755.                "The (conceptual) table of file systems local to
  756.                this host or remotely mounted from a file server.
  757.                File systems that are in only one user's
  758.                environment on a multi-user system will not be
  759.                included in this table."
  760.        ::= { hrDevice 8 }
  761.    hrFSEntry OBJECT-TYPE
  762.        SYNTAX HrFSEntry
  763.        ACCESS not-accessible
  764.        STATUS mandatory
  765.        DESCRIPTION
  766.                "A (conceptual) entry for one file system local to
  767.                this host or remotely mounted from a file server.
  768.                File systems that are in only one user's
  769.                environment on a multi-user system will not be
  770.                included in this table.
  771.                As an example of how objects in this table are
  772.                named, an instance of the hrFSMountPoint object
  773.                might be named hrFSMountPoint.3"
  774.        INDEX { hrFSIndex }
  775.        ::= { hrFSTable 1 }
  776.    -- Registration for some popular File System types,
  777.    -- for use with hrFSType.
  778.    hrFSTypes               OBJECT IDENTIFIER ::= { hrDevice 9 }
  779.    hrFSOther               OBJECT IDENTIFIER ::= { hrFSTypes 1 }
  780.    hrFSUnknown             OBJECT IDENTIFIER ::= { hrFSTypes 2 }
  781.    hrFSBerkeleyFFS         OBJECT IDENTIFIER ::= { hrFSTypes 3 }
  782.    hrFSSys5FS              OBJECT IDENTIFIER ::= { hrFSTypes 4 }
  783.    -- DOS
  784.    hrFSFat                 OBJECT IDENTIFIER ::= { hrFSTypes 5 }
  785.    -- OS/2 High Performance File System
  786.    hrFSHPFS                OBJECT IDENTIFIER ::= { hrFSTypes 6 }
  787.    --  Macintosh Hierarchical File System
  788.    hrFSHFS                 OBJECT IDENTIFIER ::= { hrFSTypes 7 }
  789.    -- Macintosh File System
  790.    hrFSMFS                 OBJECT IDENTIFIER ::= { hrFSTypes 8 }
  791.    -- Windows NT
  792.    hrFSNTFS                OBJECT IDENTIFIER ::= { hrFSTypes 9 }
  793.    hrFSVNode               OBJECT IDENTIFIER ::= { hrFSTypes 10 }
  794.    hrFSJournaled           OBJECT IDENTIFIER ::= { hrFSTypes 11 }
  795.    -- CD File systems
  796.    hrFSiso9660             OBJECT IDENTIFIER ::= { hrFSTypes 12 }
  797.    hrFSRockRidge           OBJECT IDENTIFIER ::= { hrFSTypes 13 }
  798.    hrFSNFS                 OBJECT IDENTIFIER ::= { hrFSTypes 14 }
  799.    hrFSNetware             OBJECT IDENTIFIER ::= { hrFSTypes 15 }
  800.    -- Andrew File System
  801.    hrFSAFS                 OBJECT IDENTIFIER ::= { hrFSTypes 16 }
  802.    -- OSF DCE Distributed File System
  803.    hrFSDFS                 OBJECT IDENTIFIER ::= { hrFSTypes 17 }
  804.    hrFSAppleshare          OBJECT IDENTIFIER ::= { hrFSTypes 18 }
  805.    hrFSRFS                 OBJECT IDENTIFIER ::= { hrFSTypes 19 }
  806.    -- Data General
  807.    hrFSDGCFS               OBJECT IDENTIFIER ::= { hrFSTypes 20 }
  808.    -- SVR4 Boot File System
  809.    hrFSBFS                 OBJECT IDENTIFIER ::= { hrFSTypes 21 }
  810.    HrFSEntry ::= SEQUENCE {
  811.            hrFSIndex                   INTEGER,
  812.            hrFSMountPoint              InternationalDisplayString,
  813.            hrFSRemoteMountPoint        InternationalDisplayString,
  814.            hrFSType                    OBJECT IDENTIFIER,
  815.            hrFSAccess                  INTEGER,
  816.            hrFSBootable                Boolean,
  817.            hrFSStorageIndex            INTEGER,
  818.            hrFSLastFullBackupDate      DateAndTime,
  819.            hrFSLastPartialBackupDate   DateAndTime
  820.        }
  821.    hrFSIndex OBJECT-TYPE
  822.        SYNTAX INTEGER (1..2147483647)
  823.        ACCESS read-only
  824.        STATUS mandatory
  825.        DESCRIPTION
  826.                "A unique value for each file system local to this
  827.                host.  The value for each file system must remain
  828.                constant at least from one re-initialization of
  829.                the agent to the next re-initialization."
  830.        ::= { hrFSEntry 1 }
  831.    hrFSMountPoint OBJECT-TYPE
  832.        SYNTAX InternationalDisplayString (SIZE(0..128))
  833.        ACCESS read-only
  834.        STATUS mandatory
  835.        DESCRIPTION
  836.                "The path name of the root of this file system."
  837.        ::= { hrFSEntry 2 }
  838.    hrFSRemoteMountPoint OBJECT-TYPE
  839.        SYNTAX InternationalDisplayString (SIZE(0..128))
  840.        ACCESS read-only
  841.        STATUS mandatory
  842.        DESCRIPTION
  843.                "A description of the name and/or address of the
  844.                server that this file system is mounted from.
  845.                This may also include parameters such as the mount
  846.                point on the remote file system.  If this is not a
  847.                remote file system, this string should have a
  848.                length of zero."
  849.        ::= { hrFSEntry 3 }
  850.    hrFSType OBJECT-TYPE
  851.        SYNTAX OBJECT IDENTIFIER
  852.        ACCESS read-only
  853.        STATUS mandatory
  854.        DESCRIPTION
  855.               "The value of this object identifies the type of
  856.               this file system."
  857.        ::= { hrFSEntry 4 }
  858.    hrFSAccess OBJECT-TYPE
  859.        SYNTAX INTEGER {
  860.                readWrite(1),
  861.                readOnly(2)
  862.            }
  863.        ACCESS read-only
  864.        STATUS mandatory
  865.        DESCRIPTION
  866.               "An indication if this file system is logically
  867.               configured by the operating system to be readable
  868.               and writable or only readable.  This does not
  869.               represent any local access-control policy, except
  870.               one that is applied to the file system as a whole."
  871.        ::= { hrFSEntry 5 }
  872.    hrFSBootable OBJECT-TYPE
  873.        SYNTAX Boolean
  874.        ACCESS read-only
  875.        STATUS mandatory
  876.        DESCRIPTION
  877.               "A flag indicating whether this file system is
  878.               bootable."
  879.        ::= { hrFSEntry 6 }
  880.    hrFSStorageIndex OBJECT-TYPE
  881.        SYNTAX INTEGER (0..2147483647)
  882.        ACCESS read-only
  883.        STATUS mandatory
  884.        DESCRIPTION
  885.                "The index of the hrStorageEntry that represents
  886.                information about this file system.  If there is
  887.                no such information available, then this value
  888.                shall be zero.  The relevant storage entry will be
  889.                useful in tracking the percent usage of this file
  890.                system and diagnosing errors that may occur when
  891.                it runs out of space."
  892.        ::= { hrFSEntry 7 }
  893.    hrFSLastFullBackupDate OBJECT-TYPE
  894.        SYNTAX DateAndTime
  895.        ACCESS read-write
  896.        STATUS mandatory
  897.        DESCRIPTION
  898.               "The last date at which this complete file system
  899.               was copied to another storage device for backup.
  900.               This information is useful for ensuring that
  901.               backups are being performed regularly.
  902.               If this information is not known, then this
  903.               variable shall have the value corresponding to
  904.               January 1, year 0000, 00:00:00.0, which is encoded
  905.               as (hex)'00 00 01 01 00 00 00 00'."
  906.        ::= { hrFSEntry 8 }
  907.    hrFSLastPartialBackupDate OBJECT-TYPE
  908.        SYNTAX DateAndTime
  909.        ACCESS read-write
  910.        STATUS mandatory
  911.        DESCRIPTION
  912.               "The last date at which a portion of this file
  913.               system was copied to another storage device for
  914.               backup.  This information is useful for ensuring
  915.               that backups are being performed regularly.
  916.               If this information is not known, then this
  917.               variable shall have the value corresponding to
  918.               January 1, year 0000, 00:00:00.0, which is encoded
  919.               as (hex)'00 00 01 01 00 00 00 00'."
  920.        ::= { hrFSEntry 9 }
  921.    -- The Host Resources Running Software Group
  922.    --
  923.    -- Implementation of this group is optional.
  924.    --
  925.    -- The hrSWRunTable contains an entry for each distinct piece of
  926.    -- software that is running or loaded into physical or virtual
  927.    -- memory in preparation for running.  This includes the host's
  928.    -- operating system, device drivers, and applications.
  929.    hrSWOSIndex OBJECT-TYPE
  930.        SYNTAX INTEGER (1..2147483647)
  931.        ACCESS read-only
  932.        STATUS mandatory
  933.        DESCRIPTION
  934.                "The value of the hrSWRunIndex for the
  935.                hrSWRunEntry that represents the primary operating
  936.                system running on this host.  This object is
  937.                useful for quickly and uniquely identifying that
  938.                primary operating system."
  939.        ::= { hrSWRun 1 }
  940.    hrSWRunTable OBJECT-TYPE
  941.        SYNTAX SEQUENCE OF HrSWRunEntry
  942.        ACCESS not-accessible
  943.        STATUS mandatory
  944.        DESCRIPTION
  945.               "The (conceptual) table of software running on the
  946.               host."
  947.        ::= { hrSWRun 2 }
  948.    hrSWRunEntry OBJECT-TYPE
  949.        SYNTAX HrSWRunEntry
  950.        ACCESS not-accessible
  951.        STATUS mandatory
  952.        DESCRIPTION
  953.               "A (conceptual) entry for one piece of software
  954.               running on the host Note that because the installed
  955.               software table only contains information for
  956.               software stored locally on this host, not every
  957.               piece of running software will be found in the
  958.               installed software table.  This is true of software
  959.               that was loaded and run from a non-local source,
  960.               such as a network-mounted file system.
  961.               As an example of how objects in this table are
  962.               named, an instance of the hrSWRunName object might
  963.               be named hrSWRunName.1287"
  964.        INDEX { hrSWRunIndex }
  965.        ::= { hrSWRunTable 1 }
  966.    HrSWRunEntry ::= SEQUENCE {
  967.            hrSWRunIndex       INTEGER,
  968.            hrSWRunName        InternationalDisplayString,
  969.            hrSWRunID          ProductID,
  970.            hrSWRunPath        InternationalDisplayString,
  971.            hrSWRunParameters  InternationalDisplayString,
  972.            hrSWRunType        INTEGER,
  973.            hrSWRunStatus      INTEGER
  974.        }
  975.    hrSWRunIndex OBJECT-TYPE
  976.        SYNTAX INTEGER (1..2147483647)
  977.        ACCESS read-only
  978.        STATUS mandatory
  979.        DESCRIPTION
  980.               "A unique value for each piece of software running
  981.               on the host.  Wherever possible, this should be the
  982.               system's native, unique identification number."
  983.        ::= { hrSWRunEntry 1 }
  984.    hrSWRunName OBJECT-TYPE
  985.        SYNTAX InternationalDisplayString (SIZE (0..64))
  986.        ACCESS read-only
  987.        STATUS mandatory
  988.        DESCRIPTION
  989.               "A textual description of this running piece of
  990.               software, including the manufacturer, revision,
  991.               and the name by which it is commonly known.  If
  992.               this software was installed locally, this should be
  993.               the same string as used in the corresponding
  994.               hrSWInstalledName."
  995.        ::= { hrSWRunEntry 2 }
  996.    hrSWRunID OBJECT-TYPE
  997.        SYNTAX ProductID
  998.        ACCESS read-only
  999.        STATUS mandatory
  1000.        DESCRIPTION
  1001.               "The product ID of this running piece of software."
  1002.        ::= { hrSWRunEntry 3 }
  1003.    hrSWRunPath OBJECT-TYPE
  1004.        SYNTAX InternationalDisplayString (SIZE(0..128))
  1005.        ACCESS read-only
  1006.        STATUS mandatory
  1007.        DESCRIPTION
  1008.               "A description of the location on long-term storage
  1009.               (e.g. a disk drive) from which this software was
  1010.               loaded."
  1011.        ::= { hrSWRunEntry 4 }
  1012.    hrSWRunParameters OBJECT-TYPE
  1013.        SYNTAX InternationalDisplayString (SIZE(0..128))
  1014.        ACCESS read-only
  1015.        STATUS mandatory
  1016.        DESCRIPTION
  1017.               "A description of the parameters supplied to this
  1018.               software when it was initially loaded."
  1019.        ::= { hrSWRunEntry 5 }
  1020.    hrSWRunType OBJECT-TYPE
  1021.        SYNTAX INTEGER {
  1022.                    unknown(1),
  1023.                    operatingSystem(2),
  1024.                    deviceDriver(3),
  1025.                    application(4)
  1026.               }
  1027.        ACCESS read-only
  1028.        STATUS mandatory
  1029.        DESCRIPTION
  1030.                "The type of this software."
  1031.        ::= { hrSWRunEntry 6 }
  1032.    hrSWRunStatus OBJECT-TYPE
  1033.        SYNTAX INTEGER {
  1034.                running(1),
  1035.                runnable(2),    -- waiting for resource (CPU, memory, IO)
  1036.                notRunnable(3), -- loaded but waiting for event
  1037.                invalid(4)      -- not loaded
  1038.            }
  1039.        ACCESS read-write
  1040.        STATUS mandatory
  1041.        DESCRIPTION
  1042.               "The status of this running piece of software.
  1043.               Setting this value to invalid(4) shall cause this
  1044.               software to stop running and to be unloaded."
  1045.        ::= { hrSWRunEntry 7 }
  1046.    -- The Host Resources Running Software Performance Group
  1047.    -- Implementation of this group is optional.
  1048.    --
  1049.    -- The hrSWRunPerfTable contains an entry corresponding to
  1050.    -- each entry in the hrSWRunTable.
  1051.    hrSWRunPerfTable OBJECT-TYPE
  1052.        SYNTAX SEQUENCE OF HrSWRunPerfEntry
  1053.        ACCESS not-accessible
  1054.        STATUS mandatory
  1055.        DESCRIPTION
  1056.                "The (conceptual) table of running software
  1057.                performance metrics."
  1058.        ::= { hrSWRunPerf 1 }
  1059.    hrSWRunPerfEntry OBJECT-TYPE
  1060.        SYNTAX HrSWRunPerfEntry
  1061.        ACCESS not-accessible
  1062.        STATUS mandatory
  1063.        DESCRIPTION
  1064.                "A (conceptual) entry containing software
  1065.                performance metrics.  As an example, an instance
  1066.                of the hrSWRunPerfCPU object might be named
  1067.                hrSWRunPerfCPU.1287"
  1068.        INDEX  { hrSWRunIndex }  -- This table augments information in
  1069.                                 -- the hrSWRunTable.
  1070.        ::= { hrSWRunPerfTable 1 }
  1071.    HrSWRunPerfEntry ::= SEQUENCE {
  1072.            hrSWRunPerfCPU          INTEGER,
  1073.            hrSWRunPerfMem          KBytes
  1074.    }
  1075.    hrSWRunPerfCPU OBJECT-TYPE
  1076.        SYNTAX INTEGER
  1077.        ACCESS read-only
  1078.        STATUS mandatory
  1079.        DESCRIPTION
  1080.                "The number of centi-seconds of the total system's
  1081.                CPU resources consumed by this process.  Note that
  1082.                on a multi-processor system, this value may
  1083.                increment by more than one centi-second in one
  1084.                centi-second of real (wall clock) time."
  1085.        ::= { hrSWRunPerfEntry 1 }
  1086.    hrSWRunPerfMem OBJECT-TYPE
  1087.        SYNTAX KBytes
  1088.        ACCESS read-only
  1089.        STATUS mandatory
  1090.        DESCRIPTION
  1091.                "The total amount of real system memory allocated
  1092.                to this process."
  1093.        ::= { hrSWRunPerfEntry 2 }
  1094.    -- The Host Resources Installed Software Group
  1095.    --
  1096.    -- Implementation of this group is optional.
  1097.    --
  1098.    -- The hrSWInstalledTable contains an entry for each piece
  1099.    -- of software installed in long-term storage (e.g. a disk
  1100.    -- drive) locally on this host.  Note that this does not
  1101.    -- include software loadable remotely from a network
  1102.    -- server.
  1103.    --
  1104.    -- This table is useful for identifying and inventorying
  1105.    -- software on a host and for diagnosing incompatibility
  1106.    -- and version mismatch problems between various pieces
  1107.    -- of hardware and software.
  1108.    hrSWInstalledLastChange OBJECT-TYPE
  1109.        SYNTAX TimeTicks
  1110.        ACCESS read-only
  1111.        STATUS mandatory
  1112.        DESCRIPTION
  1113.               "The value of sysUpTime when an entry in the
  1114.               hrSWInstalledTable was last added, renamed, or
  1115.               deleted.  Because this table is likely to contain
  1116.               many entries, polling of this object allows a
  1117.               management station to determine when re-downloading
  1118.               of the table might be useful."
  1119.        ::= { hrSWInstalled 1 }
  1120.    hrSWInstalledLastUpdateTime OBJECT-TYPE
  1121.        SYNTAX TimeTicks
  1122.        ACCESS read-only
  1123.        STATUS mandatory
  1124.        DESCRIPTION
  1125.               "The value of sysUpTime when the hrSWInstalledTable
  1126.               was last completely updated.  Because caching of
  1127.               this data will be a popular implementation
  1128.               strategy, retrieval of this object allows a
  1129.               management station to obtain a guarantee that no
  1130.               data in this table is older than the indicated
  1131.               time."
  1132.        ::= { hrSWInstalled 2 }
  1133.    hrSWInstalledTable OBJECT-TYPE
  1134.        SYNTAX SEQUENCE OF HrSWInstalledEntry
  1135.        ACCESS not-accessible
  1136.        STATUS mandatory
  1137.        DESCRIPTION
  1138.               "The (conceptual) table of software installed on
  1139.               this host."
  1140.        ::= { hrSWInstalled 3 }
  1141.    hrSWInstalledEntry OBJECT-TYPE
  1142.        SYNTAX HrSWInstalledEntry
  1143.        ACCESS not-accessible
  1144.        STATUS mandatory
  1145.        DESCRIPTION
  1146.               "A (conceptual) entry for a piece of software
  1147.               installed on this host.
  1148.               As an example of how objects in this table are
  1149.               named, an instance of the hrSWInstalledName object
  1150.               might be named hrSWInstalledName.96"
  1151.        INDEX { hrSWInstalledIndex }
  1152.        ::= { hrSWInstalledTable 1 }
  1153.    HrSWInstalledEntry ::= SEQUENCE {
  1154.            hrSWInstalledIndex       INTEGER,
  1155.            hrSWInstalledName        InternationalDisplayString,
  1156.            hrSWInstalledID          ProductID,
  1157.            hrSWInstalledType        INTEGER,
  1158.            hrSWInstalledDate        DateAndTime
  1159.    }
  1160.    hrSWInstalledIndex OBJECT-TYPE
  1161.        SYNTAX INTEGER (1..2147483647)
  1162.        ACCESS read-only
  1163.        STATUS mandatory
  1164.        DESCRIPTION
  1165.               "A unique value for each piece of software
  1166.               installed on the host.  This value shall be in the
  1167.               range from 1 to the number of pieces of software
  1168.               installed on the host."
  1169.        ::= { hrSWInstalledEntry 1 }
  1170.    hrSWInstalledName OBJECT-TYPE
  1171.        SYNTAX InternationalDisplayString (SIZE (0..64))
  1172.        ACCESS read-only
  1173.        STATUS mandatory
  1174.        DESCRIPTION
  1175.               "A textual description of this installed piece of
  1176.               software, including the manufacturer, revision, the
  1177.               name by which it is commonly known, and optionally,
  1178.               its serial number."
  1179.        ::= { hrSWInstalledEntry 2 }
  1180.    hrSWInstalledID OBJECT-TYPE
  1181.        SYNTAX ProductID
  1182.        ACCESS read-only
  1183.        STATUS mandatory
  1184.        DESCRIPTION
  1185.               "The product ID of this installed piece of
  1186.               software."
  1187.        ::= { hrSWInstalledEntry 3 }
  1188.    hrSWInstalledType OBJECT-TYPE
  1189.        SYNTAX INTEGER {
  1190.                    unknown(1),
  1191.                    operatingSystem(2),
  1192.                    deviceDriver(3),
  1193.                    application(4)
  1194.               }
  1195.        ACCESS read-only
  1196.        STATUS mandatory
  1197.        DESCRIPTION
  1198.                "The type of this software."
  1199.        ::= { hrSWInstalledEntry 4 }
  1200.    hrSWInstalledDate OBJECT-TYPE
  1201.        SYNTAX DateAndTime
  1202.        ACCESS read-only
  1203.        STATUS mandatory
  1204.        DESCRIPTION
  1205.               "The last-modification date of this application as
  1206.               it would appear in a directory listing."
  1207.        ::= { hrSWInstalledEntry 5 }
  1208. END