NDSStatsInfo_T

Contains statistical information for eDirectory relative to an eDirectory server.

Service:NDS
Defined In:nwdsmisc.h and nwdsmisc.inc

Structure

C

  typedef struct 
  { 
     nuint32   statsVersion ; 
     nuint32   noSuchEntry ; 
     nuint32   localEntry ; 
     nuint32   typeReferral ; 
     nuint32   aliasReferral ; 
     nuint32   requestCount ; 
     nuint32   requestDataSize ; 
     nuint32   replyDataSize ; 
     nuint32   resetTime ; 
     nuint32   transportReferral ; 
     nuint32   upReferral ; 
     nuint32   downReferral ; 
  } NDSStatsInfo_T, N_FAR *pNDSStatsInfo_T;
  

Pascal

  NDSStatsInfo_T = Record 
        statsVersion : nuint32;  
        noSuchEntry : nuint32;  
        localEntry : nuint32;  
        typeReferral : nuint32;  
        aliasReferral : nuint32;  
        requestCount : nuint32;  
        requestDataSize : nuint32;  
        replyDataSize : nuint32;  
        resetTime : nuint32;  
        transportReferral : nuint32;  
        upReferral : nuint32;  
        downReferral : nuint32 
  End;
  

Fields

statsVersion

Specifies the supported members of the statistics structure as it is expanded.

noSuchEntry

Specifies the number of times name resolution resulted in not locating the entry local to this server.

localEntry

Specifies the number of times name resolution resulted in finding the entry local to this server.

typeReferral

Specifies the number of times name resolution found a local entry, but another replica type was requested.

aliasReferral

Specifies the number of times name resolution responded with an alias referral.

requestCount

Specifies the number of NDS requests received from a remote client (including the eDirectory client agent used for skulking, etc.).

requestDataSize

Specifies the sum of request buffer sizes. This number is likely to wrap (overflow back to a lower number) over time.

replyDataSize

Records the sum of reply buffer sizes. This number is likely to wrap (overflow back to a lower number) over time.

resetTime

Specifies the last time eDirectory statistics were reset. The value consists of a whole number of seconds since 12:00 midnight, January 1, 1970, UTC.

transportReferral

Specifies the number of times name resolution located a local entry, but the referral specified does not have an acceptable transport type.

upReferral

Specifies the number of times name resolution was not walking the tree for the caller, and the referral went "up" the tree.

downReferral

Specifies the number of times name resolution was not walking the tree for the caller, and the referral went "down" the tree.