This page (revision-1) was last changed on 29-Nov-2024 16:16 by UnknownAuthor

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 added 176 lines
The ndsIntTable contains statistical data on the peer eDirectory Servers with which the monitored eDirectory Server interacts or, attempts to interact.
This table is expected to provide a useful insight into the effect of neighbours on the eDirectory Server's performance.
The table keeps track of the last "N" eDirectory Servers with which the monitored eDirectory has interacted (attempted to interact), where "N" is a locally-defined constant.
For a multiprotocol server, statistics for each protocol are kept separetely.
!! More Information
There might be more information for this subject on one of the following:
[{ReferringPagesPlugin before='*' after='\n' }]
{{{
-- The ndsIntTable contains statistical data on the peer
-- eDirectory Servers with which the monitored eDirectory
-- Server interacts or, attempts to interact. This table is
-- expected to provide a useful insight into the effect of
-- neighbours on the eDirectory Server's performance.
-- The table keeps track of the last "N" eDirectory Servers
-- with which the monitored eDirectory has interacted
-- (attempted to interact), where "N" is a locally-defined
-- constant.
-- For a multiprotocol server, statistics for each protocol
-- are kept separetely.
ndsServerIntTable OBJECT-TYPE
SYNTAX SEQUENCE OF NdsServerIntEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" Each row of this table contains some details
related to the history of the interaction
of the monitored eDirectory Server with its
peer eDirectory Servers."
::= { ndsInteractionStatistics 1 }
ndsServerIntEntry OBJECT-TYPE
SYNTAX NdsServerIntEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
" Entry containing interaction details of a eDirectory
Server with a peer eDirectory Server."
INDEX { ndsSrvIntSrvApplIndex, ndsSrvIntProtoIfIndex, ndsSrvIntIndex }
::= { ndsServerIntTable 1 }
NdsServerIntEntry ::= SEQUENCE {
ndsSrvIntSrvApplIndex
INTEGER,
ndsSrvIntProtoIfIndex
INTEGER,
ndsSrvIntIndex
INTEGER,
ndsSrvIntURL
UTF8String,
ndsSrvIntTimeOfCreation
INTEGER,
ndsSrvIntTimeOfLastAttempt
INTEGER,
ndsSrvIntTimeOfLastSuccess
INTEGER,
ndsSrvIntFailuresSinceLastSuccess
Gauge,
ndsSrvIntFailures
Gauge,
ndsSrvIntSuccesses
Gauge
}
ndsSrvIntSrvApplIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An index to uniquely identify eDirectory Server Application. "
::= {ndsServerIntEntry 1}
ndsSrvIntProtoIfIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An index to uniquely identify an entry corresponding to a
eDirectory Server protocol interface. "
::= {ndsServerIntEntry 2}
ndsSrvIntIndex OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Together with ndsSrvIntSrvApplIndex and ndsSrvIntProtoIfIndex, this
object forms the unique key to identify the conceptual row which contains useful information
on the (attempted) interaction between the eDirectory
Server (referred to by applIndex) and a peer eDirectory
Server using a particular protocol."
::= {ndsServerIntEntry 3}
ndsSrvIntURL OBJECT-TYPE
SYNTAX UTF8String
ACCESS read-only
STATUS mandatory
DESCRIPTION
" URL of the peer eDirectory Server."
::= {ndsServerIntEntry 4}
ndsSrvIntTimeOfCreation OBJECT-TYPE
SYNTAX INTEGER (0..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of seconds since
midnight (12 am) of 1 January 1970 GMT (UT)
when this row was created."
::= {ndsServerIntEntry 5}
ndsSrvIntTimeOfLastAttempt OBJECT-TYPE
SYNTAX INTEGER (0..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of seconds since
midnight (12 am) of 1 January 1970 GMT (UT)
when the last attempt was made to
contact the peer eDirectory Server."
::= {ndsServerIntEntry 6}
ndsSrvIntTimeOfLastSuccess OBJECT-TYPE
SYNTAX INTEGER (0..4294967295)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of seconds since
midnight (12 am) of 1 January 1970 GMT (UT)
when the last attempt made to contact the
peer eDirectory Server was successful."
::= {ndsServerIntEntry 7}
ndsSrvIntFailuresSinceLastSuccess OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
" The number of failures since the last time an
attempt to contact the peer eDirectory Server was successful.
If there have been no successful attempts, this counter
will contain the number of failures since this entry
was created."
::= {ndsServerIntEntry 8}
-- note this gauge has a maximum value of 4294967295 and,
-- it does not wrap.[5]
ndsSrvIntFailures OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Cumulative failures in contacting the peer eDirectory Server
since the creation of this entry."
::= {ndsServerIntEntry 9}
ndsSrvIntSuccesses OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Cumulative successes in contacting the peer eDirectory Server
since the creation of this entry."
::= {ndsServerIntEntry 10}
}}}
!! More Information
There might be more information for this subject on one of the following:
[{ReferringPagesPlugin before='*' after='\n' }]