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

📄 application-mib

📁 很不错java的SNMP应用例子
💻
📖 第 1 页 / 共 5 页
字号:
           "The applTransactStreamUnitOfWork attribute provides a            human-readable definition of what the unit of work is            for this transaction stream.            If no descriptive information is available, this            attribute's value shall be a zero-length string."        DEFVAL { "" }        ::= { applTransactionStreamEntry 2 }applTransactStreamInvokes OBJECT-TYPE        SYNTAX            Counter64        UNITS             "transactions"        MAX-ACCESS        read-only        STATUS            current        DESCRIPTION           "Cumulative count of requests / invocations issued.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactionStreamEntry 3 }applTransactStreamInvokesLow OBJECT-TYPE        SYNTAX               Counter32        UNITS                "transactions"        MAX-ACCESS           read-only        STATUS               current        DESCRIPTION           "This counter corresponds to the low thirty-two            bits of applTransactStreamInvokes.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactionStreamEntry 4 }applTransactStreamInvCumTimes OBJECT-TYPE        SYNTAX                Counter32        UNITS                 "milliseconds"        MAX-ACCESS            read-only        STATUS                current        DESCRIPTION           "The applTransactStreamInvCumTimes attribute reports the            cumulative sum of the lengths of the intervals measured            between the transmission of requests and the receipt of            (the first of) the corresponding response(s).            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactionStreamEntry 5 }applTransactStreamInvRspTimes OBJECT-TYPE        SYNTAX                Counter32        UNITS                 "milliseconds"        MAX-ACCESS            read-only        STATUS                current        DESCRIPTION           "The applTransactStreamInvRspTimes attribute reports the            cumulative sum of the lengths of the intervals measured            between the receipt of the first and last of multiple            responses to a request.            For transaction streams which do not permit multiple            responses to a single request, this attribute will be            constant.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactionStreamEntry 6 }applTransactStreamPerforms OBJECT-TYPE        SYNTAX             Counter64        UNITS              "transactions"        MAX-ACCESS         read-only        STATUS             current        DESCRIPTION           "Cumulative count of transactions performed.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactionStreamEntry 7 }applTransactStreamPerformsLow OBJECT-TYPE        SYNTAX                Counter32        UNITS                 "transactions"        MAX-ACCESS            read-only        STATUS                current        DESCRIPTION           "This counter reports the low thirty-two bits of            applTransactStreamPerforms.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactionStreamEntry 8 }applTransactStreamPrfCumTimes OBJECT-TYPE        SYNTAX                Counter32        UNITS                 "milliseconds"        MAX-ACCESS            read-only        STATUS                current        DESCRIPTION           "The applTransactStreamPrfCumTimes attribute reports the            cumulative sum of the interval lengths measured between            receipt of requests and the transmission of the            corresponding responses.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactionStreamEntry 9 }applTransactStreamPrfRspTimes OBJECT-TYPE        SYNTAX                Counter32        UNITS                 "milliseconds"        MAX-ACCESS            read-only        STATUS                current        DESCRIPTION           "For each transaction performed, the elapsed time between            when the first response is enqueued and when the last            response is enqueued is added to this cumulative sum.            For single-response protocols, the value of            applTransactStreamPrfRspTimes will be constant.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactionStreamEntry 10 }-- ****************************************************************----      applTransactFlowTable---- ****************************************************************applTransactFlowTable OBJECT-TYPE        SYNTAX        SEQUENCE OF ApplTransactFlowEntry        MAX-ACCESS    not-accessible        STATUS        current        DESCRIPTION           "The applTransactFlowTable contains entries, organized by            application instance or running application element,            direction of flow, and type (request/response) for each            open transaction stream.            The simple model of a transaction used here looks like            this:                invoker  |   Request     | performer                         | - - - - - - > |                         |               |                         |   Response    |                         | < - - - - - - |                         |               |            Since in some protocols it is possible for an entity            to take on both the invoker and performer roles,            information here is accumulated for transmitted and            received requests, as well as for transmitted and            received responses.  Counts are maintained for both            transactions and bytes transferred."        ::= { applChannelGroup 5 }applTransactFlowEntry OBJECT-TYPE        SYNTAX        ApplTransactFlowEntry        MAX-ACCESS    not-accessible        STATUS        current        DESCRIPTION           "An applTransactFlowEntry reports transaction throughput            information for requests or response in a particular            direction (transmit / receive) for a transaction stream.            Entries in this table correspond to those in the            applTransactionStreamTable with identical values for the            applElmtOrSvc, applElmtOrSvcId, and applOpenChannelIndex.            For all counter objects in one of these entries,            the corresponding (same value for applElmtOrSvc,            applElmtOrSvcId, and applOpenChannelIndex)            applOpenChannelOpenTime object serves as a discontinuity            indicator.  "        INDEX           { applElmtOrSvc,                          applElmtOrSvcId,                          applOpenChannelIndex,                          applTransactFlowDirection,                          applTransactFlowReqRsp }        ::= { applTransactFlowTable 1 }ApplTransactFlowEntry ::= SEQUENCE {                applTransactFlowDirection INTEGER,                applTransactFlowReqRsp    INTEGER,                applTransactFlowTrans     Counter64,                applTransactFlowTransLow  Counter32,                applTransactFlowBytes     Counter64,                applTransactFlowBytesLow  Counter32,                applTransactFlowTime      DateAndTime }applTransactFlowDirection OBJECT-TYPE        SYNTAX            INTEGER { transmit(1),                                    receive(2) }        MAX-ACCESS        not-accessible        STATUS            current        DESCRIPTION            "The applTransactFlowDirection index serves to identify             an entry as containing information pertaining to the             transmit (1) or receive (2) flow of a transaction             stream."        ::= { applTransactFlowEntry 1 }applTransactFlowReqRsp OBJECT-TYPE        SYNTAX         INTEGER { request(1),                                 response(2) }        MAX-ACCESS     not-accessible        STATUS         current        DESCRIPTION           "The value of the applTransactFlowReqRsp index indicates            whether this entry contains information on requests            (1), or responses (2)."        ::= { applTransactFlowEntry 2 }applTransactFlowTrans OBJECT-TYPE        SYNTAX        Counter64        UNITS         "transactions"        MAX-ACCESS    read-only        STATUS        current        DESCRIPTION            "The applTransactFlowTrans attribute reports the number             of request/response transactions (as indicated by             the applTransactFlowReqRsp index) received/generated             (as indicated by the applTransactFlowDirection index)             that this service instance or running application             element has processed for this transaction stream.             Discontinuities in this counter can be detected             by monitoring the corresponding instance of             applOpenChannelOpenTime."        ::= { applTransactFlowEntry 3 }applTransactFlowTransLow OBJECT-TYPE        SYNTAX           Counter32        UNITS            "transactions"        MAX-ACCESS       read-only        STATUS           current        DESCRIPTION            "This attribute corresponds to the low thirty-two             bits of applTransactFlowTrans.             Discontinuities in this counter can be detected             by monitoring the corresponding instance of             applOpenChannelOpenTime."        ::= { applTransactFlowEntry 4 }applTransactFlowBytes OBJECT-TYPE        SYNTAX        Counter64        UNITS         "bytes"        MAX-ACCESS    read-only        STATUS        current        DESCRIPTION           "The applTransactFlowBytes attribute reports the number            of request/response (as indicated by the            applTransactFlowReqRsp index) bytes received/generated            (as indicated by the applTransactFlowDirection index)            handled by this application element or service instance            on this transaction stream.            All application layer bytes are included in this count,            including any application layer wrappers, headers, or            other overhead.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactFlowEntry 5 }applTransactFlowBytesLow OBJECT-TYPE        SYNTAX           Counter32        UNITS            "bytes"        MAX-ACCESS       read-only        STATUS           current        DESCRIPTION           "This attribute corresponds to the low thirty-two            bits of applTransactFlowBytes.            Discontinuities in this counter can be detected            by monitoring the corresponding instance of            applOpenChannelOpenTime."        ::= { applTransactFlowEntry 6 }applTransactFlowTime OBJECT-TYPE        SYNTAX       DateAndTime        MAX-ACCESS   read-only        STATUS       current        DESCRIPTION           "The applTransactFlowTime attribute records the time of            the processing (receipt or transmission as indicated            by the applTransactFlowDirection index) by this            running application element or service instance of            the most recent request/response (as indicated by            the applTransactFlowReqRsp index) on this transaction            stream.            If no requests/responses been received/transmitted by            this entity over this transaction stream, the value            of this attribute shall be '0000000000000000'H "        DEFVAL { '0000000000000000'H }        ::= { applTransactFlowEntry 7 }-- ****************************************************************----      applTransactKindTable - transaction statistics broken down--      according to the kinds of transactions in each direction--      for a transaction stream.---- ****************************************************************applTransactKindTable   OBJECT-TYPE        SYNTAX SEQUENCE OF ApplTransactKindEntry        MAX-ACCESS      not-accessible        STATUS          current        DESCRIPTION           "The applTransactKindTable provides transaction statistics

⌨️ 快捷键说明

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