⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 host-resources-mib

📁 opennms得相关源码 请大家看看
💻
📖 第 1 页 / 共 4 页
字号:
       ACCESS read-write       STATUS mandatory       DESCRIPTION              "The last date at which a portion of this file              system was copied to another storage device for              backup.  This information is useful for ensuring              that backups are being performed regularly.              If this information is not known, then this              variable shall have the value corresponding to              January 1, year 0000, 00:00:00.0, which is encoded              as (hex)'00 00 01 01 00 00 00 00'."       ::= { hrFSEntry 9 }   -- The Host Resources Running Software Group   --   -- Implementation of this group is optional.   --   -- The hrSWRunTable contains an entry for each distinct piece of   -- software that is running or loaded into physical or virtual   -- memory in preparation for running.  This includes the host's   -- operating system, device drivers, and applications.   hrSWOSIndex OBJECT-TYPE       SYNTAX INTEGER (1..2147483647)       ACCESS read-only       STATUS mandatory       DESCRIPTION               "The value of the hrSWRunIndex for the               hrSWRunEntry that represents the primary operating               system running on this host.  This object is               useful for quickly and uniquely identifying that               primary operating system."       ::= { hrSWRun 1 }   hrSWRunTable OBJECT-TYPE       SYNTAX SEQUENCE OF HrSWRunEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "The (conceptual) table of software running on the              host."       ::= { hrSWRun 2 }   hrSWRunEntry OBJECT-TYPE       SYNTAX HrSWRunEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "A (conceptual) entry for one piece of software              running on the host Note that because the installed              software table only contains information for              software stored locally on this host, not every              piece of running software will be found in the              installed software table.  This is true of software              that was loaded and run from a non-local source,              such as a network-mounted file system.              As an example of how objects in this table are              named, an instance of the hrSWRunName object might              be named hrSWRunName.1287"       INDEX { hrSWRunIndex }       ::= { hrSWRunTable 1 }   HrSWRunEntry ::= SEQUENCE {           hrSWRunIndex       INTEGER,           hrSWRunName        InternationalDisplayString,           hrSWRunID          ProductID,           hrSWRunPath        InternationalDisplayString,           hrSWRunParameters  InternationalDisplayString,           hrSWRunType        INTEGER,           hrSWRunStatus      INTEGER       }   hrSWRunIndex OBJECT-TYPE       SYNTAX INTEGER (1..2147483647)       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A unique value for each piece of software running              on the host.  Wherever possible, this should be the              system's native, unique identification number."       ::= { hrSWRunEntry 1 }   hrSWRunName OBJECT-TYPE       SYNTAX InternationalDisplayString (SIZE (0..64))       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A textual description of this running piece of              software, including the manufacturer, revision,              and the name by which it is commonly known.  If              this software was installed locally, this should be              the same string as used in the corresponding              hrSWInstalledName."       ::= { hrSWRunEntry 2 }   hrSWRunID OBJECT-TYPE       SYNTAX ProductID       ACCESS read-only       STATUS mandatory       DESCRIPTION              "The product ID of this running piece of software."       ::= { hrSWRunEntry 3 }   hrSWRunPath OBJECT-TYPE       SYNTAX InternationalDisplayString (SIZE(0..128))       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A description of the location on long-term storage              (e.g. a disk drive) from which this software was              loaded."       ::= { hrSWRunEntry 4 }   hrSWRunParameters OBJECT-TYPE       SYNTAX InternationalDisplayString (SIZE(0..128))       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A description of the parameters supplied to this              software when it was initially loaded."       ::= { hrSWRunEntry 5 }   hrSWRunType OBJECT-TYPE       SYNTAX INTEGER {                   unknown(1),                   operatingSystem(2),                   deviceDriver(3),                   application(4)              }       ACCESS read-only       STATUS mandatory       DESCRIPTION               "The type of this software."       ::= { hrSWRunEntry 6 }   hrSWRunStatus OBJECT-TYPE       SYNTAX INTEGER {               running(1),               runnable(2),    -- waiting for resource (CPU, memory, IO)               notRunnable(3), -- loaded but waiting for event               invalid(4)      -- not loaded           }       ACCESS read-write       STATUS mandatory       DESCRIPTION              "The status of this running piece of software.              Setting this value to invalid(4) shall cause this              software to stop running and to be unloaded."       ::= { hrSWRunEntry 7 }   -- The Host Resources Running Software Performance Group   -- Implementation of this group is optional.   --   -- The hrSWRunPerfTable contains an entry corresponding to   -- each entry in the hrSWRunTable.   hrSWRunPerfTable OBJECT-TYPE       SYNTAX SEQUENCE OF HrSWRunPerfEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION               "The (conceptual) table of running software               performance metrics."       ::= { hrSWRunPerf 1 }   hrSWRunPerfEntry OBJECT-TYPE       SYNTAX HrSWRunPerfEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION               "A (conceptual) entry containing software               performance metrics.  As an example, an instance               of the hrSWRunPerfCPU object might be named               hrSWRunPerfCPU.1287"       INDEX  { hrSWRunIndex }  -- This table augments information in                                -- the hrSWRunTable.       ::= { hrSWRunPerfTable 1 }   HrSWRunPerfEntry ::= SEQUENCE {           hrSWRunPerfCPU          INTEGER,           hrSWRunPerfMem          KBytes   }   hrSWRunPerfCPU OBJECT-TYPE       SYNTAX INTEGER       ACCESS read-only       STATUS mandatory       DESCRIPTION               "The number of centi-seconds of the total system's               CPU resources consumed by this process.  Note that               on a multi-processor system, this value may               increment by more than one centi-second in one               centi-second of real (wall clock) time."       ::= { hrSWRunPerfEntry 1 }   hrSWRunPerfMem OBJECT-TYPE       SYNTAX KBytes       ACCESS read-only       STATUS mandatory       DESCRIPTION               "The total amount of real system memory allocated               to this process."       ::= { hrSWRunPerfEntry 2 }   -- The Host Resources Installed Software Group   --   -- Implementation of this group is optional.   --   -- The hrSWInstalledTable contains an entry for each piece   -- of software installed in long-term storage (e.g. a disk   -- drive) locally on this host.  Note that this does not   -- include software loadable remotely from a network   -- server.   --   -- This table is useful for identifying and inventorying   -- software on a host and for diagnosing incompatibility   -- and version mismatch problems between various pieces   -- of hardware and software.   hrSWInstalledLastChange OBJECT-TYPE       SYNTAX TimeTicks       ACCESS read-only       STATUS mandatory       DESCRIPTION              "The value of sysUpTime when an entry in the              hrSWInstalledTable was last added, renamed, or              deleted.  Because this table is likely to contain              many entries, polling of this object allows a              management station to determine when re-downloading              of the table might be useful."       ::= { hrSWInstalled 1 }   hrSWInstalledLastUpdateTime OBJECT-TYPE       SYNTAX TimeTicks       ACCESS read-only       STATUS mandatory       DESCRIPTION              "The value of sysUpTime when the hrSWInstalledTable              was last completely updated.  Because caching of              this data will be a popular implementation              strategy, retrieval of this object allows a              management station to obtain a guarantee that no              data in this table is older than the indicated              time."       ::= { hrSWInstalled 2 }   hrSWInstalledTable OBJECT-TYPE       SYNTAX SEQUENCE OF HrSWInstalledEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "The (conceptual) table of software installed on              this host."       ::= { hrSWInstalled 3 }   hrSWInstalledEntry OBJECT-TYPE       SYNTAX HrSWInstalledEntry       ACCESS not-accessible       STATUS mandatory       DESCRIPTION              "A (conceptual) entry for a piece of software              installed on this host.              As an example of how objects in this table are              named, an instance of the hrSWInstalledName object              might be named hrSWInstalledName.96"       INDEX { hrSWInstalledIndex }       ::= { hrSWInstalledTable 1 }   HrSWInstalledEntry ::= SEQUENCE {           hrSWInstalledIndex       INTEGER,           hrSWInstalledName        InternationalDisplayString,           hrSWInstalledID          ProductID,           hrSWInstalledType        INTEGER,           hrSWInstalledDate        DateAndTime   }   hrSWInstalledIndex OBJECT-TYPE       SYNTAX INTEGER (1..2147483647)       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A unique value for each piece of software              installed on the host.  This value shall be in the              range from 1 to the number of pieces of software              installed on the host."       ::= { hrSWInstalledEntry 1 }   hrSWInstalledName OBJECT-TYPE       SYNTAX InternationalDisplayString (SIZE (0..64))       ACCESS read-only       STATUS mandatory       DESCRIPTION              "A textual description of this installed piece of              software, including the manufacturer, revision, the              name by which it is commonly known, and optionally,              its serial number."       ::= { hrSWInstalledEntry 2 }   hrSWInstalledID OBJECT-TYPE       SYNTAX ProductID       ACCESS read-only       STATUS mandatory       DESCRIPTION              "The product ID of this installed piece of              software."       ::= { hrSWInstalledEntry 3 }   hrSWInstalledType OBJECT-TYPE       SYNTAX INTEGER {                   unknown(1),                   operatingSystem(2),                   deviceDriver(3),                   application(4)              }       ACCESS read-only       STATUS mandatory       DESCRIPTION               "The type of this software."       ::= { hrSWInstalledEntry 4 }   hrSWInstalledDate OBJECT-TYPE       SYNTAX DateAndTime       ACCESS read-only       STATUS mandatory       DESCRIPTION              "The last-modification date of this application as              it would appear in a directory listing."       ::= { hrSWInstalledEntry 5 }END

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -