DSA-MIB
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:23k
源码类别:

SNMP编程

开发平台:

C/C++

  1. -- Changes to rfc1567 (DSA SNMPv2 MIB):
  2. --     Added the following imports: MODULE-COMPLIANCE and OBJECT-GROUP
  3. --        from SNMPv2-CONF; and MODULE-IDENTITY Counter32, and Gauge32
  4. --        from SNMPv2-SMI.
  5. --     Removed the following unneeded imports: NOTICIATION-TYPE and
  6. --        DisplayString from SNMPv2-SMI; and TEXTUAL-CONVENTION
  7. --        from FROM SNMPv2-TC.
  8. -- dperkins@scruznet.com
  9. DSA-MIB DEFINITIONS ::= BEGIN
  10.         IMPORTS
  11.           MODULE-IDENTITY,  OBJECT-TYPE, Counter32, Gauge32
  12.                      FROM SNMPv2-SMI
  13.           TimeStamp
  14.                      FROM SNMPv2-TC
  15.           MODULE-COMPLIANCE, OBJECT-GROUP
  16.                      FROM SNMPv2-CONF
  17.           mib-2
  18.                      FROM RFC1213-MIB
  19.           applIndex, DistinguishedName
  20.                      FROM APPLICATION-MIB;
  21.         dsaMIB MODULE-IDENTITY
  22.            LAST-UPDATED "9311250000Z"
  23.            ORGANIZATION "IETF Mail and Directory Management Working
  24.                          Group"
  25.            CONTACT-INFO
  26.              "        Glenn Mansfield
  27.               Postal: AIC Systems Laboratory
  28.                       6-6-3, Minami Yoshinari
  29.                       Aoba-ku, Sendai, 989-32
  30.                       JP
  31.               Tel:    +81 22 279 3310
  32.               Fax:    +81 22 279 3640
  33.               E-Mail: glenn@aic.co.jp"
  34.          DESCRIPTION
  35.             " The MIB module for monitoring Directory System Agents."
  36.          ::= { mib-2 29 }
  37.         dsaOpsTable OBJECT-TYPE
  38.             SYNTAX SEQUENCE OF DsaOpsEntry
  39.             MAX-ACCESS not-accessible
  40.             STATUS current
  41.             DESCRIPTION
  42.               " The table holding information related to the
  43.                 DSA operations."
  44.             ::= {dsaMIB 1}
  45.         dsaOpsEntry OBJECT-TYPE
  46.             SYNTAX DsaOpsEntry
  47.             MAX-ACCESS not-accessible
  48.             STATUS current
  49.             DESCRIPTION
  50.               " Entry containing operations related statistics
  51.                 for a DSA."
  52.             INDEX { applIndex }
  53.             ::= {dsaOpsTable 1}
  54.         DsaOpsEntry ::= SEQUENCE {
  55.  -- Bindings
  56.             dsaAnonymousBinds
  57.                 Counter32,
  58.             dsaUnauthBinds
  59.                 Counter32,
  60.             dsaSimpleAuthBinds
  61.                 Counter32,
  62.             dsaStrongAuthBinds
  63.                 Counter32,
  64.             dsaBindSecurityErrors
  65.                 Counter32,
  66.  -- In-coming operations
  67.             dsaInOps
  68.                 Counter32,
  69.             dsaReadOps
  70.                 Counter32,
  71.             dsaCompareOps
  72.                 Counter32,
  73.             dsaAddEntryOps
  74.                 Counter32,
  75.             dsaRemoveEntryOps
  76.                 Counter32,
  77.             dsaModifyEntryOps
  78.                 Counter32,
  79.             dsaModifyRDNOps
  80.                 Counter32,
  81.             dsaListOps
  82.                 Counter32,
  83.             dsaSearchOps
  84.                 Counter32,
  85.             dsaOneLevelSearchOps
  86.                 Counter32,
  87.             dsaWholeTreeSearchOps
  88.                 Counter32,
  89.  -- Out going operations
  90.             dsaReferrals
  91.                 Counter32,
  92.             dsaChainings
  93.                 Counter32,
  94.  -- Errors
  95.             dsaSecurityErrors
  96.                 Counter32,
  97.             dsaErrors
  98.                 Counter32
  99.         }
  100.         dsaAnonymousBinds OBJECT-TYPE
  101.             SYNTAX Counter32
  102.             MAX-ACCESS read-only
  103.             STATUS current
  104.             DESCRIPTION
  105.               " Number of anonymous  binds to this DSA from DUAs
  106.                 since application start."
  107.             ::= {dsaOpsEntry 1}
  108.         dsaUnauthBinds OBJECT-TYPE
  109.             SYNTAX Counter32
  110.             MAX-ACCESS read-only
  111.             STATUS current
  112.             DESCRIPTION
  113.               " Number of un-authenticated binds to this
  114.                 DSA since application start."
  115.             ::= {dsaOpsEntry 2}
  116.         dsaSimpleAuthBinds OBJECT-TYPE
  117.             SYNTAX Counter32
  118.             MAX-ACCESS read-only
  119.             STATUS current
  120.             DESCRIPTION
  121.               " Number of binds to this DSA that were authenticated
  122.                 using simple authentication procedures since
  123.                 application start."
  124.             REFERENCE
  125.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  126.                 Section 8.1.2.1.1."
  127.             ::= {dsaOpsEntry 3}
  128.         dsaStrongAuthBinds OBJECT-TYPE
  129.             SYNTAX Counter32
  130.             MAX-ACCESS read-only
  131.             STATUS current
  132.             DESCRIPTION
  133.               " Number of binds to this DSA that were authenticated
  134.                 using the strong authentication procedures since
  135.                 application start. This includes the binds that were
  136.                 authenticated using external authentication procedures."
  137.             REFERENCE
  138.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  139.                 Sections 8.1.2.1.2 &  8.1.2.1.3."
  140.             ::= {dsaOpsEntry 4}
  141.         dsaBindSecurityErrors OBJECT-TYPE
  142.             SYNTAX Counter32
  143.             MAX-ACCESS read-only
  144.             STATUS current
  145.             DESCRIPTION
  146.               " Number of bind operations that have been rejected
  147.                 by this DSA due to inappropriateAuthentication or
  148.                 invalidCredentials."
  149.             REFERENCE
  150.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  151.                 Section 12.7.2"
  152.             ::= {dsaOpsEntry 5}
  153.         dsaInOps OBJECT-TYPE
  154.             SYNTAX Counter32
  155.             MAX-ACCESS read-only
  156.             STATUS current
  157.             DESCRIPTION
  158.               " Number of operations forwarded to this DSA
  159.                 from DUAs or other DSAs since application
  160.                 start up."
  161.             ::= {dsaOpsEntry 6}
  162.         dsaReadOps OBJECT-TYPE
  163.             SYNTAX Counter32
  164.             MAX-ACCESS read-only
  165.             STATUS current
  166.             DESCRIPTION
  167.               " Number of read operations serviced by
  168.                 this DSA since application startup."
  169.             REFERENCE
  170.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  171.                 Section 9.1."
  172.             ::= {dsaOpsEntry 7}
  173.         dsaCompareOps OBJECT-TYPE
  174.             SYNTAX Counter32
  175.             MAX-ACCESS read-only
  176.             STATUS current
  177.             DESCRIPTION
  178.               " Number of compare operations serviced by
  179.                 this DSA  since application startup."
  180.             REFERENCE
  181.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  182.                 Section 9.2."
  183.             ::= {dsaOpsEntry 8}
  184.         dsaAddEntryOps OBJECT-TYPE
  185.             SYNTAX Counter32
  186.             MAX-ACCESS read-only
  187.             STATUS current
  188.             DESCRIPTION
  189.               " Number of addEntry operations serviced by
  190.                 this DSA since application startup."
  191.             REFERENCE
  192.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  193.                 Section 11.1."
  194.             ::= {dsaOpsEntry 9}
  195.         dsaRemoveEntryOps OBJECT-TYPE
  196.             SYNTAX Counter32
  197.             MAX-ACCESS read-only
  198.             STATUS current
  199.             DESCRIPTION
  200.               " Number of removeEntry operations serviced by
  201.                 this DSA since application startup."
  202.             REFERENCE
  203.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  204.                 Section 11.2."
  205.             ::= {dsaOpsEntry 10}
  206.         dsaModifyEntryOps OBJECT-TYPE
  207.             SYNTAX Counter32
  208.             MAX-ACCESS read-only
  209.             STATUS current
  210.             DESCRIPTION
  211.               " Number of modifyEntry operations serviced by
  212.                 this DSA since application startup."
  213.             REFERENCE
  214.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  215.                 Section 11.3."
  216.             ::= {dsaOpsEntry 11}
  217.         dsaModifyRDNOps OBJECT-TYPE
  218.             SYNTAX Counter32
  219.             MAX-ACCESS read-only
  220.             STATUS current
  221.             DESCRIPTION
  222.               " Number of modifyRDN operations serviced by
  223.                 this DSA since application startup."
  224.             REFERENCE
  225.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  226.                 Section 11.4."
  227.             ::= {dsaOpsEntry 12}
  228.         dsaListOps OBJECT-TYPE
  229.             SYNTAX Counter32
  230.             MAX-ACCESS read-only
  231.             STATUS current
  232.             DESCRIPTION
  233.               " Number of list operations serviced by
  234.                 this DSA since application startup."
  235.             REFERENCE
  236.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  237.                 Section 10.1."
  238.             ::= {dsaOpsEntry 13}
  239.         dsaSearchOps OBJECT-TYPE
  240.             SYNTAX Counter32
  241.             MAX-ACCESS read-only
  242.             STATUS current
  243.             DESCRIPTION
  244.               " Number of search operations- baseObjectSearches,
  245.                 oneLevelSearches and  subTreeSearches, serviced
  246.                 by this DSA  since application startup."
  247.             REFERENCE
  248.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  249.                 Section 10.2."
  250.             ::= {dsaOpsEntry 14}
  251.         dsaOneLevelSearchOps OBJECT-TYPE
  252.             SYNTAX Counter32
  253.             MAX-ACCESS read-only
  254.             STATUS current
  255.             DESCRIPTION
  256.               " Number of oneLevelSearch operations serviced
  257.                 by this DSA since application startup."
  258.             REFERENCE
  259.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  260.                 Section 10.2.2.2."
  261.             ::= {dsaOpsEntry 15}
  262.         dsaWholeTreeSearchOps   OBJECT-TYPE
  263.             SYNTAX Counter32
  264.             MAX-ACCESS read-only
  265.             STATUS current
  266.             DESCRIPTION
  267.               " Number of wholeTreeSearch operations serviced
  268.                 by this DSA since application startup."
  269.             REFERENCE
  270.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  271.                 Section 10.2.2.2."
  272.             ::= {dsaOpsEntry 16}
  273.         dsaReferrals OBJECT-TYPE
  274.             SYNTAX Counter32
  275.             MAX-ACCESS read-only
  276.             STATUS current
  277.             DESCRIPTION
  278.               " Number of referrals returned by this DSA in response
  279.                 to requests for operations since application startup."
  280.             REFERENCE
  281.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  282.                 Section 12.6."
  283.             ::= {dsaOpsEntry 17}
  284.         dsaChainings OBJECT-TYPE
  285.             SYNTAX Counter32
  286.             MAX-ACCESS read-only
  287.             STATUS current
  288.             DESCRIPTION
  289.               " Number of operations forwarded by this DSA
  290.                 to other DSAs since application startup."
  291.             REFERENCE
  292.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.518, 1988:
  293.                 Section 14."
  294.             ::= {dsaOpsEntry 18}
  295.         dsaSecurityErrors OBJECT-TYPE
  296.             SYNTAX Counter32
  297.             MAX-ACCESS read-only
  298.             STATUS current
  299.             DESCRIPTION
  300.               " Number of operations forwarded to this DSA
  301.                 which did not meet the security requirements. "
  302.             REFERENCE
  303.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  304.                 Section 12.7."
  305.             ::= {dsaOpsEntry 19}
  306.         dsaErrors        OBJECT-TYPE
  307.             SYNTAX Counter32
  308.             MAX-ACCESS read-only
  309.             STATUS current
  310.             DESCRIPTION
  311.               " Number of operations that could not be serviced
  312.                 due to errors other than security errors, and
  313.                 referrals.
  314.                 A partially serviced operation will not be counted
  315.                 as an error.
  316.                 The errors include NameErrors, UpdateErrors, Attribute
  317.                 errors and ServiceErrors."
  318.             REFERENCE
  319.               " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988:
  320.                 Sections 12.4, 12.5, 12.8 & 12.9."
  321.             ::= {dsaOpsEntry 20}
  322.  -- Entry statistics/Cache performance
  323.         dsaEntriesTable OBJECT-TYPE
  324.             SYNTAX SEQUENCE OF DsaEntriesEntry
  325.             MAX-ACCESS not-accessible
  326.             STATUS current
  327.             DESCRIPTION
  328.               " The table holding information related to the
  329.                 entry statistics and cache performance of the DSAs."
  330.             ::= {dsaMIB 2}
  331.         dsaEntriesEntry OBJECT-TYPE
  332.             SYNTAX DsaEntriesEntry
  333.             MAX-ACCESS not-accessible
  334.             STATUS current
  335.             DESCRIPTION
  336.               " Entry containing statistics pertaining to entries
  337.                 held by a DSA."
  338.             INDEX { applIndex }
  339.             ::= {dsaEntriesTable 1}
  340.         DsaEntriesEntry ::= SEQUENCE {
  341.             dsaMasterEntries
  342.                 Gauge32,
  343.             dsaCopyEntries
  344.                 Gauge32,
  345.             dsaCacheEntries
  346.                 Gauge32,
  347.             dsaCacheHits
  348.                 Counter32,
  349.             dsaSlaveHits
  350.                 Counter32
  351.         }
  352.         dsaMasterEntries OBJECT-TYPE
  353.             SYNTAX Gauge32
  354.             MAX-ACCESS read-only
  355.             STATUS current
  356.             DESCRIPTION
  357.               " Number of entries mastered in the DSA."
  358.             ::= {dsaEntriesEntry 1}
  359.         dsaCopyEntries OBJECT-TYPE
  360.             SYNTAX Gauge32
  361.             MAX-ACCESS read-only
  362.             STATUS current
  363.             DESCRIPTION
  364.               " Number of entries for which systematic (slave)
  365.                 copies are maintained in the DSA."
  366.             ::= {dsaEntriesEntry 2}
  367.         dsaCacheEntries OBJECT-TYPE
  368.             SYNTAX Gauge32
  369.             MAX-ACCESS read-only
  370.             STATUS current
  371.             DESCRIPTION
  372.               " Number of entries cached (non-systematic copies) in
  373.                 the DSA. This will include the entries that are
  374.                 cached partially. The negative cache is not counted."
  375.             ::= {dsaEntriesEntry 3}
  376.         dsaCacheHits OBJECT-TYPE
  377.             SYNTAX Counter32
  378.             MAX-ACCESS read-only
  379.             STATUS current
  380.             DESCRIPTION
  381.               " Number of operations that were serviced from
  382.                 the locally held cache since application
  383.                 startup."
  384.             ::= {dsaEntriesEntry 4}
  385.         dsaSlaveHits  OBJECT-TYPE
  386.             SYNTAX Counter32
  387.             MAX-ACCESS read-only
  388.             STATUS current
  389.             DESCRIPTION
  390.               " Number of operations that were serviced from
  391.                 the locally held object replications [ shadow
  392.                 entries] since application startup."
  393.             ::= {dsaEntriesEntry 5}
  394.  -- The dsaIntTable contains statistical data on the peer DSAs
  395.  -- with which the monitored DSAs [attempt to] interact.  This
  396.  -- table  will provide a useful insight into  the   effect of
  397.  -- neighbours on the DSA performance.
  398.  -- The table keeps track of the last "N" DSAs with which  the
  399.  -- monitored  DSAs  has  interacted  [attempted to interact],
  400.  -- where "N" is a locally-defined constant.
  401.           dsaIntTable OBJECT-TYPE
  402.                   SYNTAX  SEQUENCE OF DsaIntEntry
  403.                   MAX-ACCESS  not-accessible
  404.                   STATUS  current
  405.                   DESCRIPTION
  406.                     " Each row of this table contains some details
  407.                       related to the history of the interaction
  408.                       of the monitored DSAs with their respective
  409.                       peer DSAs."
  410.                   ::= { dsaMIB 3 }
  411.           dsaIntEntry OBJECT-TYPE
  412.                   SYNTAX  DsaIntEntry
  413.                   MAX-ACCESS  not-accessible
  414.                   STATUS  current
  415.                   DESCRIPTION
  416.                     " Entry containing interaction details of a DSA
  417.                       with a peer DSA."
  418.                   INDEX { applIndex,dsaIntIndex }
  419.                   ::= { dsaIntTable 1 }
  420.           DsaIntEntry ::= SEQUENCE {
  421.               dsaIntIndex
  422.                   INTEGER,
  423.               dsaName
  424.                   DistinguishedName,
  425.               dsaTimeOfCreation
  426.                   TimeStamp,
  427.               dsaTimeOfLastAttempt
  428.                   TimeStamp,
  429.               dsaTimeOfLastSuccess
  430.                   TimeStamp,
  431.               dsaFailuresSinceLastSuccess
  432.                   Counter32,
  433.               dsaFailures
  434.                   Counter32,
  435.               dsaSuccesses
  436.                   Counter32
  437.           }
  438.         dsaIntIndex  OBJECT-TYPE
  439.             SYNTAX INTEGER (1..2147483647)
  440.             MAX-ACCESS not-accessible
  441.             STATUS current
  442.             DESCRIPTION
  443.               " Together with applIndex it forms the unique key to
  444.                 identify the conceptual row which contains useful info
  445.                 on the (attempted) interaction between the DSA (referred
  446.                 to by applIndex) and a peer DSA."
  447.             ::= {dsaIntEntry 1}
  448.         dsaName  OBJECT-TYPE
  449.             SYNTAX DistinguishedName
  450.             MAX-ACCESS read-only
  451.             STATUS current
  452.             DESCRIPTION
  453.               " Distinguished Name of the peer DSA to which this
  454.                 entry pertains."
  455.             ::= {dsaIntEntry 2}
  456.         dsaTimeOfCreation  OBJECT-TYPE
  457.             SYNTAX TimeStamp
  458.             MAX-ACCESS read-only
  459.             STATUS current
  460.             DESCRIPTION
  461.               " The value of sysUpTime when this row was created.
  462.                 If the entry was created before the network management
  463.                 subsystem was initialized, this object will contain
  464.                 a value of zero."
  465.             ::= {dsaIntEntry 3}
  466.         dsaTimeOfLastAttempt  OBJECT-TYPE
  467.             SYNTAX TimeStamp
  468.             MAX-ACCESS read-only
  469.             STATUS current
  470.             DESCRIPTION
  471.               " The value of sysUpTime when the last attempt was made
  472.                 to contact this DSA. If the last attempt was made before
  473.                 the network management subsystem was initialized, this
  474.                 object will contain a value of zero."
  475.             ::= {dsaIntEntry 4}
  476.         dsaTimeOfLastSuccess  OBJECT-TYPE
  477.             SYNTAX TimeStamp
  478.             MAX-ACCESS read-only
  479.             STATUS current
  480.             DESCRIPTION
  481.               " The value of sysUpTime when the last attempt made to
  482.                 contact this DSA was successful. If there have
  483.                 been no successful attempts this entry will have a value
  484.                 of zero. If the last successful attempt was made before
  485.                 the network management subsystem was initialized, this
  486.                 object will contain a value of zero."
  487.             ::= {dsaIntEntry 5}
  488.         dsaFailuresSinceLastSuccess  OBJECT-TYPE
  489.             SYNTAX Counter32
  490.             MAX-ACCESS read-only
  491.             STATUS current
  492.             DESCRIPTION
  493.               " The number of failures since the last time an
  494.                 attempt to contact this DSA was successful. If
  495.                 there has been no successful attempts, this counter
  496.                 will contain the number of failures since this entry
  497.                 was created."
  498.             ::= {dsaIntEntry 6}
  499.         dsaFailures  OBJECT-TYPE
  500.             SYNTAX Counter32
  501.             MAX-ACCESS read-only
  502.             STATUS current
  503.             DESCRIPTION
  504.               " Cumulative failures since the creation of
  505.                 this entry."
  506.             ::= {dsaIntEntry 7}
  507.         dsaSuccesses  OBJECT-TYPE
  508.             SYNTAX Counter32
  509.             MAX-ACCESS read-only
  510.             STATUS current
  511.             DESCRIPTION
  512.               " Cumulative successes since the creation of
  513.                 this entry."
  514.             ::= {dsaIntEntry 8}
  515.  -- Conformance information
  516.         dsaConformance OBJECT IDENTIFIER ::= { dsaMIB 4 }
  517.         dsaGroups      OBJECT IDENTIFIER ::= { dsaConformance 1 }
  518.         dsaCompliances OBJECT IDENTIFIER ::= { dsaConformance 2 }
  519.  -- Compliance statements
  520.         dsaOpsCompliance MODULE-COMPLIANCE
  521.             STATUS  current
  522.             DESCRIPTION
  523.                     "The compliance statement for SNMPv2 entities
  524.                     which implement the DSA-MIB for monitoring
  525.                     DSA operations."
  526.             MODULE  -- this module
  527.                 MANDATORY-GROUPS { dsaOpsGroup }
  528.             ::= { dsaCompliances 1 }
  529.         dsaEntryCompliance MODULE-COMPLIANCE
  530.             STATUS  current
  531.             DESCRIPTION
  532.                     "The compliance statement for SNMPv2 entities
  533.                     which implement the DSA-MIB for monitoring
  534.                     DSA operations,  entry statistics and cache
  535.                     performance."
  536.             MODULE  -- this module
  537.                 MANDATORY-GROUPS { dsaOpsGroup,dsaEntryGroup }
  538.             ::= { dsaCompliances 2 }
  539.         dsaIntCompliance MODULE-COMPLIANCE
  540.             STATUS  current
  541.             DESCRIPTION
  542.                     " The compliance statement  for SNMPv2  entities
  543.                       which implement the DSA-MIB for monitoring DSA
  544.                       operations and the interaction of the DSA with
  545.                       peer DSAs."
  546.             MODULE  -- this module
  547.                 MANDATORY-GROUPS { dsaOpsGroup, dsaIntGroup }
  548.             ::= { dsaCompliances 3 }
  549.  -- Units of conformance
  550.         dsaOpsGroup    OBJECT-GROUP
  551.             OBJECTS {
  552.               dsaAnonymousBinds,  dsaUnauthBinds,       dsaSimpleAuthBinds,
  553.               dsaStrongAuthBinds, dsaBindSecurityErrors,dsaInOps,
  554.               dsaReadOps,         dsaCompareOps,        dsaAddEntryOps,
  555.               dsaRemoveEntryOps,  dsaModifyEntryOps,    dsaModifyRDNOps,
  556.               dsaListOps,         dsaSearchOps,         dsaOneLevelSearchOps,
  557.               dsaWholeTreeSearchOps,dsaReferrals,       dsaChainings,
  558.               dsaSecurityErrors,  dsaErrors}
  559.             STATUS  current
  560.             DESCRIPTION
  561.                     " A collection of objects for monitoring the DSA
  562.                       operations."
  563.             ::= { dsaGroups 1 }
  564.         dsaEntryGroup    OBJECT-GROUP
  565.             OBJECTS {dsaMasterEntries,   dsaCopyEntries,       dsaCacheEntries,
  566.                      dsaCacheHits,       dsaSlaveHits}
  567.             STATUS  current
  568.             DESCRIPTION
  569.                     " A collection of objects for monitoring the DSA
  570.                       entry statistics and cache performance."
  571.             ::= { dsaGroups 2 }
  572.         dsaIntGroup    OBJECT-GROUP
  573.             OBJECTS {
  574.               dsaName,             dsaTimeOfCreation, dsaTimeOfLastAttempt,
  575.               dsaTimeOfLastSuccess,dsaFailuresSinceLastSuccess,dsaFailures,
  576.               dsaSuccesses}
  577.             STATUS  current
  578.             DESCRIPTION
  579.                     " A collection of objects for monitoring the DSA's
  580.                       interaction with peer DSAs."
  581.             ::= { dsaGroups 3 }
  582. END