RFC2564 - Application Management MIB(2)

时间:2005-02-16 来源: 作者: 点击:
Discontinuities in this counter can be detected by monitoring the applOpenChannelOpenTime value for this entry." ::= { applOpenChannelEntry 13 } applOpenChannelBytesWritten OBJECT-TYPE SYNTAX Counter
  

Discontinuities in this counter can be detected
by monitoring the applOpenChannelOpenTime value for
this entry."
::= { applOpenChannelEntry 13 }

applOpenChannelBytesWritten OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute reports the number of bytes written to
this channel. Only bytes successfully written (without
errors reported by the system to the API in use by the
application) are included in this count.

Discontinuities in this counter can be detected by
monitoring the applOpenChannelOpenTime value for this
entry."
::= { applOpenChannelEntry 14 }

applOpenChannelBytesWrittenLow OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute corresponds to the low thirty-two bits
of applOpenChannelBytesWritten.

Discontinuities in this counter can be detected by
monitoring the applOpenChannelOpenTime value for this
entry."
::= { applOpenChannelEntry 15 }

applOpenChannelLastWriteTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute reports the time of the most recent write
request made by this running application element or
service instance, regardless of completion status, for
this open channel.

If no write requests have been made, the value
of this attribute shall be '0000000000000000'H "
DEFVAL { '0000000000000000'H }
::= { applOpenChannelEntry 16 }

-- ****************************************************************
--
-- applOpenFileTable - Table of Open Files
--
-- ****************************************************************

applOpenFileTable OBJECT-TYPE
SYNTAX SEQUENCE OF ApplOpenFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The applOpenFileTable reports information on open files
for service instances or application elements. This
table is indexed by applElmtOrSvc and applElmtOrSvcId,
effectively grouping all entries for a given running
service instance or application element together, and
by applOpenChannelIndex, uniquely identifying an open
channel (and, consequently, a file) within the context
of a particular service instance or application element.

Elements in this table correspond to elements in the
applOpenChannelTable that represent files. For rows in
the applOpenChannelTable that do not represent files,
corresponding rows in this table will not exist."
::= { applChannelGroup 2 }

applOpenFileEntry OBJECT-TYPE
SYNTAX ApplOpenFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An applOpenFileEntry indicates that a file has been
opened by this running application element and is
still open. Note that if a file has been opened
multiple times, even by the same process, it will have
multiple entries."
INDEX { applElmtOrSvc, applElmtOrSvcId,
applOpenChannelIndex }
::= { applOpenFileTable 1 }

ApplOpenFileEntry ::= SEQUENCE
{
applOpenFileName LongUtf8String,
applOpenFileSizeHigh Unsigned32,
applOpenFileSizeLow Unsigned32,
applOpenFileMode INTEGER
}

applOpenFileName OBJECT-TYPE
SYNTAX LongUtf8String
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute reports the name of this open file.
Wherever practical, a fully qualified path name should
be reported.

The values 'stdin', 'stdout', and 'stderr' are reserved
in accordance with common usage when the fully qualified
path name cannot be determined."
::= { applOpenFileEntry 1 }

applOpenFileSizeHigh OBJECT-TYPE
SYNTAX Unsigned32
UNITS "2^32 byte blocks"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This file's current size in 2^32 byte blocks.

For example, for a file with a total size of 4,294,967,296
bytes, this attribute would have a value of 1; for a file
with a total size of 4,294,967,295 bytes this attribute's
value would be 0."
::= { applOpenFileEntry 2 }

applOpenFileSizeLow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This file's current size modulo 2^32 bytes.

For example, for a file with a total size of
4,294,967,296 bytes this attribute would have a value
of 0; for a file with a total size of 4,294,967,295
bytes this attribute's value would be 4,294,967,295."

::= { applOpenFileEntry 3 }

applOpenFileMode OBJECT-TYPE
SYNTAX INTEGER { read(1),
write(2),
readWrite(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute reports the current mode of this file from
the perspective of this running application element.

These values have the following meanings:

read(1) - file opened for reading only
write(2) - file opened for writing only
readWrite(3) - file opened for read and write.

These values correspond to the POSIX/ANSI C library
function fopen() 'type' parameter, using the following
mappings:

r -> read(1)
w -> write(2)
a -> write(2)
+ -> readWrite(3)
"
::= { applOpenFileEntry 4 }

-- ****************************************************************
--
-- applOpenConnectionTable - Open Connection Table
--
-- ****************************************************************

applOpenConnectionTable OBJECT-TYPE
SYNTAX SEQUENCE OF ApplOpenConnectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The applOpenConnectionTable provides information about
open and listening connections from the perspective
of a running application element or service instance.
Entries in this table are indexed by applElmtOrSvc,
applElmtOrSvcID, and by applOpenChannelIndex, which
serves to uniquely identify each connection in the
context of a service instance or running application

element.

For each row in this table, a corresponding row will
exist in the applOpenChannel table. For rows in the
applOpenChannelTable which do not represent open or
listening connections, no corresponding rows will exist
in this table."
::= { applChannelGroup 3 }

applOpenConnectionEntry OBJECT-TYPE
SYNTAX ApplOpenConnectionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An applOpenConnectionEntry indicates that a running
application element or service instance has an open
connection. The entry has information describing that
connection.

In the case of a TCP transport, the element
applOpenConnectionNearEndAddr and that row's
applOpenConnectionFarEndAddr would correspond
to a tcpConnEntry. For a UDP transport, a
similar relationship exists with respect to
a udpEntry."
INDEX { applElmtOrSvc, applElmtOrSvcId,
applOpenChannelIndex }
::= { applOpenConnectionTable 1 }

ApplOpenConnectionEntry ::= SEQUENCE
{
applOpenConnectionTransport TDomain,
applOpenConnectionNearEndAddr ApplTAddress,
applOpenConnectionNearEndpoint SnmpAdminString,
applOpenConnectionFarEndAddr ApplTAddress,
applOpenConnectionFarEndpoint SnmpAdminString,
applOpenConnectionApplication SnmpAdminString
}

applOpenConnectionTransport OBJECT-TYPE
SYNTAX TDomain
MAX-ACCESS read-only
STATUS current

DESCRIPTION
"The applOpenConnectionTransport attribute identifies the
transport protocol in use for this connection. If it is
not practical to determine the underlying transport, this
attribute's value shall have a value of {0 0}."
DEFVAL { zeroDotZero }
::= { applOpenConnectionEntry 1 }

applOpenConnectionNearEndAddr OBJECT-TYPE
SYNTAX ApplTAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applOpenConnectionNearEndAddr attribute reports the
transport address and port information for the near end
of this connection.

If the value is not known, the value has a length
of zero."
DEFVAL { "" }
::= { applOpenConnectionEntry 2 }

applOpenConnectionNearEndpoint OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applOpenConnectionNearEndpoint attribute reports the
fully-qualified domain name and port information for the
near end of this connection.

The format of this attribute for TCP and UDP-based
protocols is the fully-qualified domain name immediately
followed by a colon which is immediately followed by
the decimal representation of the port number.

If the value is not known, the value has a length
of zero."
DEFVAL { "" }
::= { applOpenConnectionEntry 3 }

applOpenConnectionFarEndAddr OBJECT-TYPE
SYNTAX ApplTAddress
MAX-ACCESS read-only
STATUS current

DESCRIPTION
"The applOpenConnectionFarEndAddr attribute reports the
transport address and port information for the far end
of this connection.

If not known, as in the case of a connectionless
transport, the value of this attribute shall be a
zero-length string."
DEFVAL { "" }
::= { applOpenConnectionEntry 4 }

applOpenConnectionFarEndpoint OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applOpenConnectionFarEndpoint attribute reports
the fully-qualified domain name and port information
for the far end of this connection.

The format of this attribute for TCP and UDP-based
protocols is the fully-qualified domain name immediately
followed by a colon which is immediately followed by
the decimal representation of the port number.

If not known, as in the case of a connectionless
transport, the value of this attribute shall be a
zero-length string."
DEFVAL { "" }
::= { applOpenConnectionEntry 5 }

applOpenConnectionApplication OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applOpenConnectionApplication attribute identifies
the application layer protocol in use. If not known,
the value of this attribute shall be a zero-length
string.

When possible, protocol names should be those used in
the 'ASSIGNED NUMBERS' [13]. For example, an SMTP mail
server would use 'SMTP'."
DEFVAL { "" }
::= { applOpenConnectionEntry 6 }

-- ****************************************************************
--
-- applTransactionStreamTable - common
-- information for transaction stream monitoring
--
-- ****************************************************************

applTransactionStreamTable OBJECT-TYPE
SYNTAX SEQUENCE OF ApplTransactionStreamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The applTransactionStreamTable contains common
information for transaction statistic accumulation."
::= { applChannelGroup 4 }

applTransactionStreamEntry OBJECT-TYPE
SYNTAX ApplTransactionStreamEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An applTransactionStreamEntry contains information for
a single transaction stream. A transaction stream
can be a network connection, file, or other source
of transactions."
INDEX { applElmtOrSvc, applElmtOrSvcId,
applOpenChannelIndex }
::= { applTransactionStreamTable 1 }

ApplTransactionStreamEntry ::= SEQUENCE {
applTransactStreamDescr SnmpAdminString,
applTransactStreamUnitOfWork SnmpAdminString,
applTransactStreamInvokes Counter64,
applTransactStreamInvokesLow Counter32,
applTransactStreamInvCumTimes Counter32,
applTransactStreamInvRspTimes Counter32,
applTransactStreamPerforms Counter64,
applTransactStreamPerformsLow Counter32,
applTransactStreamPrfCumTimes Counter32,
applTransactStreamPrfRspTimes Counter32 }

applTransactStreamDescr OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applTransactStreamDescr attribute provides a
human-readable description of this transaction stream.

If no descriptive information is available, this
attribute's value shall be a zero-length string."
DEFVAL { "" }
::= { applTransactionStreamEntry 1 }

applTransactStreamUnitOfWork OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"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
broken down by kinds of transaction. The definition of
the kinds of transactions is specific to the application
protocol in use, and may be documented in the form of an
applicability statement. "
::= { applChannelGroup 6 }

applTransactKindEntry OBJECT-TYPE
SYNTAX ApplTransactKindEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An applTransactKindEntry reports information for a
specific service instance or running application
element's use of a specific transaction stream in
a particular direction in requests or responses
(as indicated by the applTransactFlowReqRsp index)
broken down by transaction kind, as indicated by the
applTransactKind index.

Discontinuities in any of the counters in an entry can
be detected by monitoring the corresponding instance of
applOpenChannelOpenTime."

INDEX { applElmtOrSvc,
applElmtOrSvcId,
applOpenChannelIndex,
applTransactFlowDirection,
applTransactFlowReqRsp,
applTransactKind }
::= { applTransactKindTable 1 }

ApplTransactKindEntry ::= SEQUENCE
{
applTransactKind SnmpAdminString,
applTransactKindTrans Counter64,
applTransactKindTransLow Counter32,
applTransactKindBytes Counter64,
applTransactKindBytesLow Counter32,
applTransactKindTime DateAndTime
}

applTransactKind OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1 .. 32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION

"The applTransactKind index is the human-readable
identifier for a particular transaction kind within
the context of an application protocol. The values
to be used for a particular protocol may be identified
in an applicability statement."
::= { applTransactKindEntry 1 }

applTransactKindTrans OBJECT-TYPE
SYNTAX Counter64
UNITS "transactions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applTransactKindTrans attribute reports the number
of request/response (as indicated by the
applTransactFlowReqRsp index) transactions
received/generated (as indicated by the
applTransactFlowDirection index) handled by this
application instance or application element on this
transaction stream for this transaction kind.

Discontinuities in this counter can be detected
by monitoring the corresponding instance of
applOpenChannelOpenTime."
::= { applTransactKindEntry 2 }

applTransactKindTransLow OBJECT-TYPE
SYNTAX Counter32
UNITS "transactions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applTransactKindTransLow attribute reports
the low thirty-two bits of applTransactKindTrans.

Discontinuities in this counter can be detected
by monitoring the corresponding instance of
applOpenChannelOpenTime."
::= { applTransactKindEntry 3 }

applTransactKindBytes OBJECT-TYPE
SYNTAX Counter64
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applTransactKindBytes 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 on this transaction
stream for this transaction kind.

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."
::= { applTransactKindEntry 4 }

applTransactKindBytesLow OBJECT-TYPE
SYNTAX Counter32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applTransactKindBytesLow attribute corresponds
to the low thirty-two bits of applTransactKindBytes.

Discontinuities in this counter can be detected
by monitoring the corresponding instance of
applOpenChannelOpenTime."
::= { applTransactKindEntry 5 }

applTransactKindTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applTransactKindTime 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) of this kind of
transaction on this transaction stream.

If no requests/responses of this kind been
received/transmitted by this running application element
or service instance over this transaction stream, the
value of this attribute shall be '0000000000000000'H "
DEFVAL { '0000000000000000'H }
::= { applTransactKindEntry 6 }

-- ****************************************************************
--
-- applPastChannelGroup - logged information on former channels.
-- These tables control the collection of channel history
-- information and represent the accumulated historical data.
--
-- ****************************************************************

applPastChannelControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF ApplPastChannelControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The applPastChannelControlTable controls the
accumulation of history information about channels
from the perspective of service instances and running
application elements. Entries in this table are indexed
by applElmtOrSvc and applElmtOrSvcId, giving control
of channel history accumulation at the level of each
service instance and running application element."
::= { applPastChannelGroup 1 }

applPastChannelControlEntry OBJECT-TYPE
SYNTAX ApplPastChannelControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An applPastChannelControlEntry provides the ability
to control the retention of channel history information
by service instances and running application elements."
INDEX { applElmtOrSvc, applElmtOrSvcId }
::= { applPastChannelControlTable 1 }

ApplPastChannelControlEntry ::= SEQUENCE
{
applPastChannelControlCollect INTEGER,
applPastChannelControlMaxRows Unsigned32,
applPastChannelControlTimeLimit Unsigned32,
applPastChannelControlRemItems Counter32
}

applPastChannelControlCollect OBJECT-TYPE
SYNTAX INTEGER { enabled (1),
frozen (2),
disabled (3) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION

"When the value of applPastChannelControlCollect is
'enabled', each time the corresponding running
application element or service instance closes
an open channel a new entry will be added to the
applPastChannelTable.

When the value of applPastChannelControlCollect
is 'frozen', no new entries are added to the
applPastChannelTable for this running application
element or service instance, and old entries are not
aged out.

When the value of applPastChannelControlCollect
is 'disabled', all entries are removed from
applPastChannelTable for this running application or
service instance, and no new entries are added."
DEFVAL { enabled }
::= { applPastChannelControlEntry 1 }

applPastChannelControlMaxRows OBJECT-TYPE
SYNTAX Unsigned32
UNITS "channel history entries"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of entries allowed in the
applPastChannelTable for this running application element
or service instance. Once the number of rows for this
running application element or service instance in the
applPastChannelTable reaches this value, when new
entries are to be added the management subsystem will
make room for them by removing the oldest entries.
Entries will be removed on the basis of oldest
applPastChannelCloseTime value first."
DEFVAL { 500 }
::= { applPastChannelControlEntry 2 }

applPastChannelControlTimeLimit OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum time in seconds which an entry for this
running application element or service instance
may exist in the applPastChannelTable before it
is removed. Any entry that is older than this value
will be removed (aged out) from the table, unless the

applPastChannelControlCollect is set to 'frozen'.

Note that an entry may be aged out prior to reaching
this time limit if it is the oldest entry in the table
and must be removed to make space for a new entry so
as to not exceed applPastChannelControlMaxRows, or if the
applPastChannelControlCollect is set to 'disabled'."
DEFVAL { 7200 }
::= { applPastChannelControlEntry 3 }

applPastChannelControlRemItems OBJECT-TYPE
SYNTAX Counter32
UNITS "channel history entries"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applPastChannelControlRemItems attribute reports the
number of applPastChannelControlTable entries for this
running application element or service instance that
were deleted in order to make room for new history
entries.

This count does NOT include entries deleted for the
following reasons:
- the corresponding applPastChannelControlCollect
attribute has been set to 'disabled'

- the entry has been in the table longer that the
time limit indicated by the corresponding
applPastChannelControlTimeLimit.
"
::= { applPastChannelControlEntry 4 }

-- ****************************************************************
--
-- applPastChannelTable - Table of former channels
--
-- ****************************************************************

applPastChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF ApplPastChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The applPastChannelTable provides history information
about channels from the perspective of running
application elements and service instances.

Entries in this table are indexed by applElmtOrSvc,
applElmtOrSvcId, and by applPastChannelIndex, which
serves to uniquely identify each former channel in the
context of a running application element or service
instance.

Note that the value of applPastChannelIndex is
independent of the value applOpenChannelIndex had when
this channel was open.

Entries for closed channels for a given running
application element or service instance can
be added to this table only if its entry in the
applPastChannelControlTable has the value 'enabled'
for the attribute applPastChannelControlCollect.

Entries for closed channels are removed under the
following circumstances:

- the running application element or service
instance no longer exists

- the corresponding applPastChannelControlCollect
attribute has been set to 'disabled'

- the entry has been in the table longer that the
time limit indicated by the corresponding
applPastChannelControlTimeLimit and the value of
applPastChannelControlCollect is not 'frozen'

- this is the oldest entry for the running
application element or service instance in
question and the addition of a new element would
otherwise cause applPastChannelControlMaxRows to
be exceeded for this running application element
or service instance.

- a value of applPastChannelIndex has been re-used.
Note that under normal circumstances, this is
unlikely.

Removal/replacement of an entry under the
last two conditions causes the corresponding
applPastChannelControlRemItems to be incremented."
::= { applPastChannelGroup 2 }

applPastChannelEntry OBJECT-TYPE
SYNTAX ApplPastChannelEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An applPastChannelEntry indicates that a running
application element or service instance once had an open
channel, which is now closed. The entry has information
describing that channel."
INDEX { applElmtOrSvc, applElmtOrSvcId,
applPastChannelIndex }
::= { applPastChannelTable 1 }

ApplPastChannelEntry ::= SEQUENCE
{
applPastChannelIndex Unsigned32,
applPastChannelOpenTime DateAndTime,
applPastChannelCloseTime DateAndTime,
applPastChannelReadRequests Unsigned64TC,
applPastChannelReadReqsLow Unsigned32,
applPastChannelReadFailures Unsigned32,
applPastChannelBytesRead Unsigned64TC,
applPastChannelBytesReadLow Unsigned32,
applPastChannelLastReadTime DateAndTime,
applPastChannelWriteRequests Unsigned64TC,
applPastChannelWriteReqsLow Unsigned32,
applPastChannelWriteFailures Unsigned32,
applPastChannelBytesWritten Unsigned64TC,
applPastChannelBytesWritLow Unsigned32,
applPastChannelLastWriteTime DateAndTime
}

applPastChannelIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..'ffffffff'h)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This attribute serves to uniquely identify this closed
channel in the context of the running application
element or service instance. This attribute has no
other semantics.

Note that the value of applPastChannelIndex is
independent of the value applOpenChannelIndex had when
this channel was active.

In issuing this index value, the implementation must
avoid re-issuing an index value which has already been

assigned to an entry which has not yet been deleted due
to age or space considerations.

The value zero is excluded from the set of permitted
values for this index in order to permit other tables to
possibly represent information that cannot be associated
with a specific entry in this table. "
::= { applPastChannelEntry 1 }

applPastChannelOpenTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute records the time when this channel was
originally opened. Note that this information is quite
different from applOpenChannelOpenTime, which is used
for the detection of counter discontinuities."
::= { applPastChannelEntry 2 }

applPastChannelCloseTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute records the time when this channel
was closed."
::= { applPastChannelEntry 3 }

applPastChannelReadRequests OBJECT-TYPE
SYNTAX Unsigned64TC
UNITS "read requests"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute records the number of read requests for
this channel made by this running application element or
service instance. All read requests for this channel by
this running application element or service instance,
regardless of completion status, are included in this
count. Read requests are counted in terms of system
calls, rather than API calls."

::= { applPastChannelEntry 4 }

applPastChannelReadReqsLow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "read requests"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute corresponds to the low thirty-two bits
of applPastChannelReadRequests."
::= { applPastChannelEntry 5 }

applPastChannelReadFailures OBJECT-TYPE
SYNTAX Unsigned32
UNITS "failed read requests"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute reports the number of failed read
requests."
::= { applPastChannelEntry 6 }

applPastChannelBytesRead OBJECT-TYPE
SYNTAX Unsigned64TC
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute reports the number of bytes read from this
channel by this running application element or service
instance. Only bytes successfully read are included in
this count. "
::= { applPastChannelEntry 7 }

applPastChannelBytesReadLow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute corresponds to the low thirty-two bits
of applPastChannelBytesRead."
::= { applPastChannelEntry 8 }

applPastChannelLastReadTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current

DESCRIPTION
"This attribute reports the time of the most recent read
request made by this running application element or
service instance regardless of completion status, for
this former channel.

If no read requests have been made , the value of this
attribute shall be '0000000000000000'H "
DEFVAL { '0000000000000000'H }
::= { applPastChannelEntry 9 }

applPastChannelWriteRequests OBJECT-TYPE
SYNTAX Unsigned64TC
UNITS "write requests"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applPastChannelWriteRequests attribute reports
the number of write requests, regardless of completion
status, made by this running application element or
service instance for this former channel.

Write requests are counted in terms of system calls,
rather than API calls."
::= { applPastChannelEntry 10 }

applPastChannelWriteReqsLow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "write requests"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute corresponds to the low thirty-two
bits of applPastChannelWriteRequests."
::= { applPastChannelEntry 11 }

applPastChannelWriteFailures OBJECT-TYPE
SYNTAX Unsigned32
UNITS "failed write requests"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute reports the number of failed write
requests."
::= { applPastChannelEntry 12 }

applPastChannelBytesWritten OBJECT-TYPE
SYNTAX Unsigned64TC
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute reports the number of bytes written to
this former channel by this running application element
or service instance. Only bytes successfully written
(no errors reported by the API in use by the application)
are included in this count."
::= { applPastChannelEntry 13 }

applPastChannelBytesWritLow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute corresponds to the low thirty-two bits of
applPastChannelBytesWritten."
::= { applPastChannelEntry 14 }

applPastChannelLastWriteTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applPastChannelLastWriteTime attribute reports
the time of the most recent write request made by
this running application element or service instance,
regardless of completion status, for this former
channel.

If no write requests have been made the value of this
attribute shall be '0000000000000000'H "
DEFVAL { '0000000000000000'H }
::= { applPastChannelEntry 15 }

-- ****************************************************************
--
-- applPastFileTable - information specific to former files
--
-- ****************************************************************

applPastFileTable OBJECT-TYPE
SYNTAX SEQUENCE OF ApplPastFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The applPastFileTable supplements the
applPastChannelTable for entries corresponding to
channels which were files. The indexing structure is
identical to applPastChannelTable. An entry exists in
the applPastFileTable only if there is a corresponding
(same index values) entry in the applPastChannelTable
and if the channel was a file.

Entries for closed files are removed when the
corresponding entries are removed from the
applPastChannelTable."
::= { applPastChannelGroup 3 }

applPastFileEntry OBJECT-TYPE
SYNTAX ApplPastFileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An applPastFileEntry provides additional, file-specific
information to complement the corresponding
applPastChannelEntry for a channel which was a file."
INDEX { applElmtOrSvc, applElmtOrSvcId,
applPastChannelIndex }
::= { applPastFileTable 1 }

ApplPastFileEntry ::= SEQUENCE
{
applPastFileName LongUtf8String,
applPastFileSizeHigh Unsigned32,
applPastFileSizeLow Unsigned32,
applPastFileMode INTEGER
}

applPastFileName OBJECT-TYPE
SYNTAX LongUtf8String
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute records the last known value of
applOpenFileName before the channel was closed."
::= { applPastFileEntry 1 }

applPastFileSizeHigh OBJECT-TYPE
SYNTAX Unsigned32
UNITS "2^32 byte blocks"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute records the value of applOpenFileSizeHigh
at the time this channel was closed.

For example, for a file with a total size of
4,294,967,296 bytes, this attribute would have a value
of 1; for a file with a total size of 4,294,967,295
bytes this attribute's value would be 0."
::= { applPastFileEntry 2 }

applPastFileSizeLow OBJECT-TYPE
SYNTAX Unsigned32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute records the value of applOpenFileSizeLow
at the time this channel was closed.

For example, for a file with a total size of
4,294,967,296 bytes this attribute would have a value
of 0; for a file with a total size of 4,294,967,295
bytes this attribute's value would be 4,294,967,295."
::= { applPastFileEntry 3 }

applPastFileMode OBJECT-TYPE
SYNTAX INTEGER { read(1),
write(2),
readWrite(3) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute records the value of applOpenFileMode
at the time this channel was closed. "
::= { applPastFileEntry 4 }

-- ****************************************************************
--
-- applPastConTable - information specific to former connections
--
-- ****************************************************************

applPastConTable OBJECT-TYPE
SYNTAX SEQUENCE OF ApplPastConEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The applPastConTable supplements the applPastChannelTable
for entries corresponding to channels which were
connections. The indexing structure is identical
to applPastChannelTable. An entry exists in the
applPastConTable only if there is a corresponding
(same index values) entry in the applPastChannelTable
and if the channel was a connection.

Entries for closed connections are removed when
the corresponding entries are removed from the
applPastChannelTable."
::= { applPastChannelGroup 4 }

applPastConEntry OBJECT-TYPE
SYNTAX ApplPastConEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An applPastConEntry provides additional,
connection-specific information to complement the
corresponding applPastChannelEntry for a channel which
was a connection."
INDEX { applElmtOrSvc, applElmtOrSvcId,
applPastChannelIndex }
::= { applPastConTable 1 }

ApplPastConEntry ::= SEQUENCE
{
applPastConTransport TDomain,
applPastConNearEndAddr ApplTAddress,
applPastConNearEndpoint SnmpAdminString,
applPastConFarEndAddr ApplTAddress,
applPastConFarEndpoint SnmpAdminString,
applPastConApplication SnmpAdminString
}

applPastConTransport OBJECT-TYPE
SYNTAX TDomain
MAX-ACCESS read-only
STATUS current

DESCRIPTION
"The applPastConTransport attribute identifies the
transport protocol that was in use for this former
connection. If the transport protocol could not be
determined, the value { 0 0 } shall be used."
DEFVAL { zeroDotZero }
::= { applPastConEntry 1 }

applPastConNearEndAddr OBJECT-TYPE
SYNTAX ApplTAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applPastConNearEndAddr attribute reports the
transport address and port information for the near
end of this former connection.

If the information could not be determined, the value
shall be a zero-length string."
DEFVAL { "" }
::= { applPastConEntry 2 }

applPastConNearEndpoint OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applPastConNearEndpoint attribute reports the
fully-qualified domain name and port information for the
near end of this former connection.

The format of this attribute for TCP and UDP-based
protocols is the fully-qualified domain name immediately
followed by a colon which is immediately followed by
the decimal representation of the port number.

If the information could not be determined, the value
shall be a zero-length string."
DEFVAL { "" }
::= { applPastConEntry 3 }

applPastConFarEndAddr OBJECT-TYPE
SYNTAX ApplTAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applPastConFarEnd attribute reports the transport
address and port information for the far end of this

former connection.

If not known, as in the case of a connectionless
transport, the value of this attribute shall be a
zero-length string."
DEFVAL { "" }
::= { applPastConEntry 4 }

applPastConFarEndpoint OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applPastConFarEndpoint attribute reports the
transport address and port information for the far
end of this former connection.

The format of this attribute for TCP and UDP-based
protocols is the fully-qualified domain name immediately
followed by a colon which is immediately followed by
the decimal representation of the port number.

If not known, as in the case of a connectionless
transport, the value of this attribute shall be a
zero-length string."
DEFVAL { "" }
::= { applPastConEntry 5 }

applPastConApplication OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The applPastConApplication attribute identifies the
application layer protocol that was in use. Where
possible, the values defined in [13] shall be used.
If not known, the value of this attribute shall be a
zero-length string."
DEFVAL { "" }
::= { applPastConEntry 6 }

-- ****************************************************************
--
-- applPastTransStreamTable - historical
-- information for transaction stream monitoring
--
-- ****************************************************************

applPastTransStreamTable OBJECT-TYPE
SYNTAX SEQUENCE OF ApplPastTransStreamEntry
MAX-ACCESS not-accessible
------分隔线----------------------------
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
最新评论 查看所有评论
发表评论 查看所有评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价:
表情:
用户名: 密码: 验证码:
推荐内容