1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
#
# BDII Update Process Monitoring Schema
#
attributetype ( 1.3.6.1.4.1.8006.100.3.1
NAME 'Hostname'
DESC 'The hostname of the BDII this data refers to'
EQUALITY caseIgnoreIA5Match
SUBSTR caseIgnoreIA5SubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.2
NAME 'TotalEntries'
DESC 'The number of Entries in the LDAP database'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.3
NAME 'UpdateTime'
DESC 'The time in seconds for the update process to complete'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.4
NAME 'DBUpdateTime'
DESC 'The time in seconds to update the LDAP database'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.5
NAME 'NewEntries'
DESC 'The number of new entries this update'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.6
NAME 'QueryTime'
DESC 'The time to query the LDAP database'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.7
NAME 'ProvidersTime'
DESC 'The time in seconds to run the information providers'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.8
NAME 'PluginsTime'
DESC 'The time in seconds to run the information plugins'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.9
NAME 'FailedAdds'
DESC 'The number failed add entries'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.10
NAME 'ModifiedEntries'
DESC 'The number entries which were modified'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.11
NAME 'DeletedEntries'
DESC 'The number entries which were deleted'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.12
NAME 'FailedDeletes'
DESC 'The entries that failed to delete'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.13
NAME 'FailedModifies'
DESC 'The number of entries which failed to be modified'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.3.14
NAME 'ReadTime'
DESC 'The time taken to read the old entries'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.27
SINGLE-VALUE)
objectclass ( 1.2.6.1.4.1.8006.100.3
NAME 'UpdateStats'
DESC 'An entity which keeps statistical data for a BDII instance'
MUST ( Hostname $ TotalEntries $ UpdateTime $ DBUpdateTime $ NewEntries $ QueryTime $ ProvidersTime $ FailedAdds $ ModifiedEntries $ DeletedEntries $ FailedDeletes $ FailedModifies $ PluginsTime $ ReadTime) )
#
# BDII Compresses Content
#
attributetype ( 1.3.6.1.4.1.8006.100.1.1
NAME 'CompressionType'
DESC 'The compression type which the data has been created with'
EQUALITY caseIgnoreIA5Match
SUBSTR caseIgnoreIA5SubstringsMatch
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26
SINGLE-VALUE)
attributetype ( 1.3.6.1.4.1.8006.100.1.2
NAME 'Data'
DESC 'The compressed data'
SYNTAX 1.3.6.1.4.1.1466.115.121.1.5
SINGLE-VALUE)
objectclass ( 1.2.6.1.4.1.8006.100.1
NAME 'CompressedContent'
DESC 'An entity which keeps the content of a BDII in a compressd format'
MUST ( Hostname $ CompressionType $ Data ) )
|