-- extracted from draft-ietf-rmonmib-tpm-mib-06.txt -- at Fri Jun 14 06:10:09 2002 TPM-MIB DEFINITIONS ::= BEGIN IMPORTS MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Unsigned32 FROM SNMPv2-SMI MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF SnmpAdminString FROM SNMP-FRAMEWORK-MIB RowStatus, TEXTUAL-CONVENTION, TimeStamp, TruthValue FROM SNMPv2-TC rmon, OwnerString FROM RMON-MIB protocolDirLocalIndex, LastCreateTime, TimeFilter FROM RMON2-MIB apmReportControlIndex, AppLocalIndex, ClientID, DataSourceOrZero, TransactionAggregationType FROM APM-MIB ClockSource, MicroSeconds FROM SSPM-MIB; -- Transaction performance Monitoring MIB tpm MODULE-IDENTITY LAST-UPDATED "200206061500Z" -- 10 June 2002 ORGANIZATION "IETF RMON MIB Working Group" CONTACT-INFO "E-mail: rmonmib@ietf.org Subscribe: rmonmib-request@ietf.org w/ msg body: subscribe rmonmib Russell Dietz Hifn, Inc. Postal: 750 University Ave Los Gatos, CA 95032-7695 USA Tel: +1 408 399-3623 Fax: +1 408 399-3501 E-mail: rdietz@hifn.com Robert G. Cole AT&T Labs Postal: 330 Saint Johns Street 2nd Floor Havre de Grace, MD 21078 USA Tel: +1 410 939-8732 Fax: +1 410 939-8732 E-mail: rgcole@att.com" DESCRIPTION "This module defines managed objects for measuring traffic related transport performance metrics in relationship to application-level measurements in networks. In particular, it describes managed objects used for monitoring selectable performance metrics and statistics derived from the monitoring of network packets and transport protocol states." REVISION "200206061500Z" -- 10 June 2002 DESCRIPTION "The original version of this MIB, published as RFCXXXX." ::= { rmon 30 } -- this has NOT been assigned -- -- Object Identifier Assignments -- tpmCapabilities OBJECT IDENTIFIER ::= { tpm 1 } tpmReports OBJECT IDENTIFIER ::= { tpm 2 } tpmConformance OBJECT IDENTIFIER ::= { tpm 3 } tpmAggrReportCntrl OBJECT IDENTIFIER ::= { tpmReports 1 } tpmAggrReport OBJECT IDENTIFIER ::= { tpmReports 2 } tpmCurrReport OBJECT IDENTIFIER ::= { tpmReports 3 } tpmExcpReport OBJECT IDENTIFIER ::= { tpmReports 4 } -- -- Textual Conventions -- TransactionMetricIndex ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "An index used to uniquely identify an entry in the tpmTransactionMetricDir table. Each such entry defines the protocol transaction and metric instance to be monitored for a specific application." SYNTAX Integer32 (1..65535) MetricDefID ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "An index that identifies through reference to a specific performance metric. The metrics are referenced through their type (connect, delay, loss, etc.), their directional characteristics (one-way, round trip, etc.), their name, their reference to a documented definition." SYNTAX Unsigned32 (1..2147483647) -- -- Extensions to the RMON-2 MIB for the collection of Performance -- Metrics related to application traffic in a network. -- -- In order to maintain the RMON 'look-and-feel', some of -- the text from the RMON-2 and HC-RMON MIBs by -- Steve Waldbusser have been used in this MIB. -- -- -- The tpmCapabilitiesGroup -- -- -- Transport Performance Transaction Metric Directory -- -- This table is used to describe and link sets of performance -- metrics and protocols to an entry in the application directory. -- This table, with the tpmMetricDefTable, describes the capability of -- the agent to collection sub-application level data related to each -- entry in the apmAppDirectoryTable. -- tpmClockResolution OBJECT-TYPE SYNTAX MicroSeconds MAX-ACCESS read-only STATUS current -- UNITS Microseconds DESCRIPTION "A read only variable indicating the resolution of the measurements possible by this device." ::= { tpmCapabilities 1 } tpmClockMaxSkew OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-only STATUS current -- UNITS Seconds DESCRIPTION "A read only variable indicating the maximum offset error due to skew of the local clock over the time interval 86400 seconds, in seconds." ::= { tpmCapabilities 2 } tpmClockSource OBJECT-TYPE SYNTAX ClockSource MAX-ACCESS read-only STATUS current -- UNITS MicroSeconds DESCRIPTION "A read only variable indicating the source of the clock. This is provided to allow a user to determine how accurate the timing mechanism is compared with other devices." ::= { tpmCapabilities 3 } tpmTransactionMetricDirLastChange OBJECT-TYPE SYNTAX TimeStamp MAX-ACCESS read-only STATUS current DESCRIPTION "The value of sysUpTime at the time the tpmTransactionMetricDirTable was last modified, through modifications of the tpmTransactionMetricDirConfig object." ::= { tpmCapabilities 4 } tpmTransactionMetricDirTable OBJECT-TYPE SYNTAX SEQUENCE OF TpmTransactionMetricDirEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table lists the protocol transactions and their corresponding performance metrics that this agent has the capability to compute and collect, for the specified application. There is one entry in this table for each such application, protocol transaction and metric combination supported by this agent. The entries in this table represent the metrics that are collected for each protocol transaction that comprise the application. The agent should boot up with this table pre-configured with those combinations of applications, protocol transactions and metrics that it knows about and wishes to monitor. Implementations must populate the table with all possible application, protocol transaction and metric combinations and have the default configuration objects set to supportedOff(2). This table does not support the creation of new combinations by the management application. The deletion of an entry in the apmAppDirectoryTable will cause the removal of entries from this table. These entries must be removed because the appLocalIndex value will no longer be visible in the apmAppDirectoryTable. When an entry is created in the apmAppDirectoryTable and the agent has the ability to support metrics for these protocol transactions, the appropriate entries must be made in the tpmTransactionMetricDefTable." ::= { tpmCapabilities 5 } tpmTransactionMetricDirEntry OBJECT-TYPE SYNTAX TpmTransactionMetricDirEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A conceptual row in the tpmTransactionMetricDirTable. An example of the indexing of this entry is tpmTransactionMetricDirConfig.5.2 where 5 is the value of a valid and visible appLocalIndex object in in the appLocalDir table. The entries describe the the transaction and metric pairs monitored for this application. The tpmTransactionMetricProtocolIndex identifies the protocol transaction and the tpmMetricDefIndex describes the metric monitored." INDEX { tpmTransactionMetricAppLocalIndex, -- Application Index tpmTransactionMetricIndex -- (Protocol,Metric) Index } ::= { tpmTransactionMetricDirTable 1 } TpmTransactionMetricDirEntry ::= SEQUENCE { tpmTransactionMetricAppLocalIndex AppLocalIndex, tpmTransactionMetricIndex TransactionMetricIndex, tpmTransactionMetricProtocolIndex Integer32, tpmTransactionMetricMetricIndex Integer32, tpmTransactionMetricDirConfig INTEGER } tpmTransactionMetricAppLocalIndex OBJECT-TYPE SYNTAX AppLocalIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION "An index used to uniquely identify the application which the entries in the tpmTransactionMetricDir table are associated." ::= { tpmTransactionMetricDirEntry 1 } tpmTransactionMetricIndex OBJECT-TYPE SYNTAX TransactionMetricIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION "An index used to uniquely identify an entry in the tpmTransactionMetricDir table. Each such entry defines protocol transaction and metric instance to be monitored for a specific application." ::= { tpmTransactionMetricDirEntry 2 } tpmTransactionMetricProtocolIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION "The protocolDirLocalIndex of the particular transaction to be analyzed when computing and generating the selected metric for a specific application." ::= { tpmTransactionMetricDirEntry 3 } tpmTransactionMetricMetricIndex OBJECT-TYPE SYNTAX Integer32 (1..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION "The tpmMetricDefID of the particular metric to be generated." ::= { tpmTransactionMetricDirEntry 4 } tpmTransactionMetricDirConfig OBJECT-TYPE SYNTAX INTEGER { notSupported(1), supportedOff(2), supportedOn(3) } MAX-ACCESS read-write STATUS current DESCRIPTION "This object describes and configures the probe's support for this performance metric in relationship to the specified transaction and application. The agent creates entries in this table for all metric and transaction combinations that it can generate. Because the probe will only populate this table with supported entries, and the table cannot have entries added, the notSupported(1) setting is only used to signify that other configuration parameters are causing the agent to currently not support the generation and collection of this metric for the specified protocol and application. Also, the status of this object will not change to notSupported(1) due to a change to supportedOff(2) in the tpmMetricDir table. If the value of this object is notSupported(1), the probe will not perform computations for this performance metric and transaction combination and shall not allow this object to be changed to any other value. If the value of this object is supportedOn(3), the probe supports computations for this performance metric and protocol and is configured to perform the computations for this performance metric and protocol combination for the application for all interfaces. If the value of this object is supportedOff(2), the probe supports computations for this performance metric for the specified protocol, but is configured to not perform the computations for this performance metric and protocol for the application for any interfaces. Whenever this value changes from supportedOn(3) to supportedOff(2), the probe shall cause the deletion of all entries in the tpmReportGroup tables, for all appropriate studies configured in the tpmAggrReportCntrlTable." ::= { tpmTransactionMetricDirEntry 5 } -- -- TPM Metric Definitions Table -- -- The tpmMetricDefTable describes the metrics available to the -- TPM MIB. The tpmMetricDefTable defines metrics by referencing -- existing IETF, ITU and other standards organizations' documents. tpmMetricDefTable OBJECT-TYPE SYNTAX SEQUENCE OF TpmMetricDefEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains one row per metric supported by this agent, and should be populated during system initialization." ::= { tpmCapabilities 6 } tpmMetricDefEntry OBJECT-TYPE SYNTAX TpmMetricDefEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "Information about a particular metric." INDEX { tpmMetricDefID } ::= { tpmMetricDefTable 1 } TpmMetricDefEntry ::= SEQUENCE { tpmMetricDefID MetricDefID, tpmMetricDefType INTEGER, tpmMetricDefDirType INTEGER, tpmMetricDefName SnmpAdminString, tpmMetricDefReference SnmpAdminString } tpmMetricDefID OBJECT-TYPE SYNTAX MetricDefID MAX-ACCESS not-accessible STATUS current DESCRIPTION "The index for this entry. This object identifies the standard or vendor-specific registration OBJECT IDENTIFER defined for a particular metric." ::= { tpmMetricDefEntry 1 } tpmMetricDefType OBJECT-TYPE SYNTAX INTEGER { other(1), connectMetric(2), delayMetric(3), lossMetric(4) } MAX-ACCESS read-only STATUS current DESCRIPTION "The basic type of metric indicated by this entry. The value 'other(1)' indicates that this metric cannot be characterized by any of the remaining enumerations specified for this object. The value 'connectMetric(2)' indicates that this metric measures connectivity characteristics. The value 'delayMetric(3)' indicates that this metric measures delay characteristics. The value 'lossMetric(4)' indicates that this metric measures loss characteristics." ::= { tpmMetricDefEntry 2 } tpmMetricDefDirType OBJECT-TYPE SYNTAX INTEGER { oneWay(1), twoWay(2), multiWay(3) } MAX-ACCESS read-only STATUS current DESCRIPTION "The directional characteristics of the this metric. The value 'oneWay(1)' indicates that this metric is measured with some sort of uni-directional test. The value 'twoWay(2)' indicates that this metric is measured with some sort of bi-directional test. The value 'multiWay(3)' indicates that this metric is measured with some combination of uni-directional and/or bi- directional tests." ::= { tpmMetricDefEntry 3 } tpmMetricDefName OBJECT-TYPE SYNTAX SnmpAdminString MAX-ACCESS read-only STATUS current DESCRIPTION "The textual name of this metric." ::= { tpmMetricDefEntry 4 } tpmMetricDefReference OBJECT-TYPE SYNTAX SnmpAdminString MAX-ACCESS read-only STATUS current DESCRIPTION "This object contains a reference to the document which defines this metric. If this document is available online via electronic download, then a URL should be specified in this object. For example, if this tpmMetricDefEntry identified the IPPM metric 'Type-P-Round-Trip-Delay', then this object should contain the value 'http://www.ietf.org/rfc/rfc2681.txt'." ::= { tpmMetricDefEntry 5 } -- -- The tpmAggregateReportsGroup -- -- -- The tpmAggrReportCntrlTable is the controlling entry to manage -- the population of studies in the Transport Aggregate Report -- tpmAggrReportCntrlTable OBJECT-TYPE SYNTAX SEQUENCE OF TpmAggrReportCntrlEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A table to control the collection of performance metric studies for selected interfaces, metrics and transaction protocols and applications. Note that this is not like the typical RMON controlTable and dataTable in which each entry creates its own data table. Each entry in this table enables the creation of multiple data tables on a study basis. For each interval, the study is updated in place and the current data content of the table becomes invalid." ::= { tpmReports 1 } tpmAggrReportCntrlEntry OBJECT-TYPE SYNTAX TpmAggrReportCntrlEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A conceptual row in the tpmAggrReportCntrlTable. An example of the indexing of this entry is tpmAggrReportCntrlDataSource.1" INDEX { tpmAggrReportCntrlIndex } ::= { tpmAggrReportCntrlTable 1 } TpmAggrReportCntrlEntry ::= SEQUENCE { tpmAggrReportCntrlIndex Integer32, tpmAggrReportCntrlApmControlIndex Integer32, tpmAggrReportCntrlDataSource DataSourceOrZero, tpmAggrReportCntrlAggregationType TransactionAggregationType, tpmAggrReportCntrlInterval Unsigned32, tpmAggrReportCntrlRequestedSize Unsigned32, tpmAggrReportCntrlGrantedSize Unsigned32, tpmAggrReportCntrlRequestedReports Unsigned32, tpmAggrReportCntrlGrantedReports Unsigned32, tpmAggrReportCntrlStartTime TimeStamp, tpmAggrReportCntrlReportNumber Unsigned32, tpmAggrReportCntrlInsertsDenied Counter32, tpmAggrReportCntrlDroppedFrames Counter32, tpmAggrReportCntrlOwner OwnerString, tpmAggrReportCntrlStatus RowStatus } tpmAggrReportCntrlIndex OBJECT-TYPE SYNTAX Integer32 (1..65535) MAX-ACCESS not-accessible STATUS current DESCRIPTION "An index that uniquely identifies an entry in the tpmAggrReportCntrlTable. Each such entry defines a unique report whose results are placed in the tpmAggrReportTable on behalf of this tpmAggrReportCntrlEntry." ::= { tpmAggrReportCntrlEntry 1 } tpmAggrReportCntrlApmControlIndex OBJECT-TYPE SYNTAX Integer32 (0..65535) MAX-ACCESS read-create STATUS current DESCRIPTION "This index associates this TpmAggrReportCntrlEntry directly with an existing ApmReportControlEntry. This link is used to synchronize reports in the associated tpmAggrReportTable. A value of 0 (zero) enables an independent control table that will report entries to tpmAggrReportTable based only on the other objects in this table. This object may not be modified if the associated tpmAggrReportCntrlStatus object is equal to active(1)." DEFVAL { 0 } ::= { tpmAggrReportCntrlEntry 2 } tpmAggrReportCntrlDataSource OBJECT-TYPE SYNTAX DataSourceOrZero MAX-ACCESS read-create STATUS current DESCRIPTION "The source of the data for TPM Reports generated on behalf of this tpmAggrReportCntrlEntry. If the measurement is being performed by a probe, this should be set to interface or port where data was received for analysis. If the measurement isn't being performed by a probe, this should be set to the primary interface over which the measurement is being performed. If the measurement isn't being performed by a probe and there is no primary interface or this information isn't known, this object should be set to 0.0. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object is set to the corresponding apmReportControlTable object in the APM MIB [APM]. This object may not be modified if the associated tpmAggrReportCntrlStatus object is equal to active(1)." ::= { tpmAggrReportCntrlEntry 3 } tpmAggrReportCntrlAggregationType OBJECT-TYPE SYNTAX TransactionAggregationType -- INTEGER { -- flows(1), -- clients(2), -- servers(3), -- applications(4) -- } MAX-ACCESS read-create STATUS current DESCRIPTION "The type of aggregation being performed for this set of reports. See APM MIB [APM]. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object should be set by the agent to the value of the apmReportControlAggregationType object. This object may not be modified if the associated tpmAggrReportCntrlStatus object is equal to active(1)." ::= { tpmAggrReportCntrlEntry 4 } tpmAggrReportCntrlInterval OBJECT-TYPE SYNTAX Unsigned32 UNITS "Seconds" MAX-ACCESS read-create STATUS current DESCRIPTION "The interval in seconds over which data is accumulated before being aggregated into a report in the tpmAggrReportTable. All reports with the same tpmAggrReportCntrlIndex will be based on the same interval. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object should be set by the agent to the value of the apmReportControlControlInterval object. This object may not be modified if the associated tpmReportAggregateCntrlStatus object is equal to active(1)." DEFVAL { 3600 } ::= { tpmAggrReportCntrlEntry 5 } tpmAggrReportCntrlRequestedSize OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-create STATUS current DESCRIPTION "The maximum number of Client and Server combination entries requested for this report. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object should be set by the agent to the value of the apmReportControlRequestedSize object. When this object is created or modified, the probe should set tpmReportCntrlGrantedSize as closely to this object as is possible for the particular probe implementation and available resources. It is important to note that this value is the number of requested entries in the tpmAggrReportTable only. Since the probe can derive this table from the apmReportTable, the probe must make sure that sufficient resources exist to support the creation of the apmReportTable plus any additional resources required to convert or support this table." ::= { tpmAggrReportCntrlEntry 6 } tpmAggrReportCntrlGrantedSize OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The maximum number of performance entries in this report. When the associated tpmAggrReportCntrlRequestedSize object is created or modified, the probe should set this object as closely to the requested value as is possible for the particular implementation and available resources. The probe must not lower this value except as a result of a set to the associated tpmAggrReportCntrlRequestedSize object. It is an implementation-specific matter as to whether or not zero-valued entries are available." ::= { tpmAggrReportCntrlEntry 7 } tpmAggrReportCntrlRequestedReports OBJECT-TYPE SYNTAX Unsigned32 (1..65535) MAX-ACCESS read-create STATUS current DESCRIPTION "The number of saved reports requested to be allocated on behalf of this entry. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object should be set by the agent to the value of the apmReportControlcwRequestedReportsDataSource object." ::= { tpmAggrReportCntrlEntry 8 } tpmAggrReportCntrlGrantedReports OBJECT-TYPE SYNTAX Unsigned32 (0..65535) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of saved reports the agent has allocated based on the requested amount in tpmAggrReportCntrlRequestedReports. Since each report can have many entries, the total number of entries allocated will be this number multiplied by the value of tpmAggrReportCntrlGrantedSize, or 1 if that object doesn't exist. When the associated tpmAggrReportCntrlRequestedReports object is created or modified, the agent should set this object as closely to the requested value as is possible for the particular implementation and available resources. When considering resources available, the agent must consider its ability to allocate this many reports each with the number of entries represented by tpmAggrReportCntrlGrantedSize, or 1 if that object doesn't exist. Note that while the storage required for each report may fluctuate due to changing conditions, the agemt must continue to have storage available to satisfy the full report size for all reports when necessary. Further, the agent must not lower this value except as a result of a set to the associated tpmAggrReportCntrlRequestedSize object." ::= { tpmAggrReportCntrlEntry 9 } tpmAggrReportCntrlStartTime OBJECT-TYPE SYNTAX TimeStamp MAX-ACCESS read-only STATUS current DESCRIPTION "The value of sysUpTime when the system began processing the report in progress. Note that the report in progress is not available. This object may be used by the management station to figure out the start time for all previous reports saved for this tpmAggrReportCntrlEntry, as reports are started at fixed intervals. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object is set to the corresponding apmReportControlTable object in the APM MIB [APM]." ::= { tpmAggrReportCntrlEntry 10 } tpmAggrReportCntrlReportNumber OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of the report in progress. When an tpmAggrReportCntrlEntry is activated, the first report will be numbered zero. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object should be set by the agent to the value of the apmReportControlReportNumber object." ::= { tpmAggrReportCntrlEntry 11 } tpmAggrReportCntrlInsertsDenied OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The number of failed attempts to add an entry to reports for this tpmReportControlEntry because the number of entries would have exceeded tpmReportAggregateCntrlGrantedSize. This number is valuable in determining if enough entries have been allocated for reports in light of fluctuating network usage. Note that an entry that is denied will often be attempted again, this number will not predict the exact number of additional entries needed, but can be used to understand the relative magnitude of the problem. Also note that there is no ordering specified for the entries in the report, thus there are no rules for which entries will be omitted when not enough entries are available. As a consequence, the agent is not required to delete 'least valuable' entries first." ::= { tpmAggrReportCntrlEntry 12 } tpmAggrReportCntrlDroppedFrames OBJECT-TYPE SYNTAX Counter32 MAX-ACCESS read-only STATUS current DESCRIPTION "The total number of frames which were received by the agent and therefore not accounted for in the *StatsDropEvents, but for which the agent chose not to count for this entry for whatever reason. Most often, this event occurs when the agent is out of some resources and decides to shed load from this collection. This count does not include packets that were not counted because they had MAC-layer errors. Note that if the alMatrixTables are not implemented or are inactive because no protocols are enabled in the protocol directory, this value should be 0. Note that, unlike the dropEvents counter, this number is the exact number of frames dropped." ::= { tpmAggrReportCntrlEntry 13 } tpmAggrReportCntrlOwner OBJECT-TYPE SYNTAX OwnerString MAX-ACCESS read-create STATUS current DESCRIPTION "The entity that configured this entry and is therefore using the resources assigned to it. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object should be set by the agent to the value of the apmReportControlReportNumber object." ::= { tpmAggrReportCntrlEntry 14 } tpmAggrReportCntrlStatus OBJECT-TYPE SYNTAX RowStatus MAX-ACCESS read-create STATUS current DESCRIPTION "The status of this performance control entry. An entry may not exist in the active state unless all objects in the entry have an appropriate value. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object should be set by the agent to the value of the apmReportControlReportNumber object. If this object is not equal to active(1), all associated entries in the tpmAggrReportTable shall be deleted." ::= { tpmAggrReportCntrlEntry 15 } -- -- Transport Aggregate Report Table -- -- This table contains transport performance metric studies for each -- of the control table entries in tpmAggrReportCntrlTable. These -- studies are provided based on the selections and parameters found -- for the entry in the tpmAggregateReportCntrlTable. -- tpmAggrReportTable OBJECT-TYPE SYNTAX SEQUENCE OF TpmAggrReportEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A study of performance statistics for those table entries specified in the tpmTransactionMetricDirTable associated with the application in question and indexed by appLocalIndex and tpmTransactionMetricIndex." ::= { tpmReports 2 } tpmAggrReportEntry OBJECT-TYPE SYNTAX TpmAggrReportEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A conceptual row in the tpmAggrReportTable. The tpmAggrReportCntrlIndex value in the index identifies the tpmAggrReportCntrlEntry on whose behalf this entry was created. The tpmAggrReportIndex value in the index identifies which report (in the series of reports) this entry is a part of. The tpmAggrReportAppLocalIndex value in the index identifies the application protocol that is being reported. The tpmTransactionMetricIndex value in the index identifies the transaction protocol-metric pair for the traffic flows aggregated in this entry. The protocolDirLocalIndex value in the index identifies the network layer protocol of the tpmAggrReportServerAddress. When the associated tpmAggrReportCntrlAggregationType value is equal to applications(4) or clients(2), this value will equal 0. The tpmAggrReportServerAddress value in the index identifies the network layer address of the server in traffic flows aggregated in this entry. The tpmAggrReportApmNameClientID value in the index identifies the client in traffic flows aggregated in this entry. If the associated tpmAggrReportCntrlAggregationType is equal to applications(4) or servers(3), then this object will be set to 0. An example of the indexing of this entry is tpmAggrReportStatisticN.3.15.34.262.18.4.128.2.6.7.3256521" INDEX { tpmAggrReportCntrlIndex, tpmAggrReportIndex, tpmAggrReportAppLocalIndex, -- Application Layer tpmAggrReportTransMetricIndex, -- Metric and Protocol protocolDirLocalIndex, -- Network Layer tpmAggrReportServerAddress, tpmAggrReportApmNameClientID } ::= { tpmAggrReportTable 1 } TpmAggrReportEntry ::= SEQUENCE { tpmAggrReportIndex Integer32, tpmAggrReportAppLocalIndex AppLocalIndex, tpmAggrReportTransMetricIndex TransactionMetricIndex, tpmAggrReportServerAddress OCTET STRING, tpmAggrReportApmNameClientID ClientID, tpmAggrReportStatisticN Unsigned32, tpmAggrReportOverflowStatisticN Unsigned32, tpmAggrReportHCStatisticN Unsigned32, tpmAggrReportStatisticSumX Unsigned32, tpmAggrReportOverflowStatisticSumX Unsigned32, tpmAggrReportHCStatisticSumX Unsigned32, tpmAggrReportStatisticMaximum Unsigned32, tpmAggrReportStatisticMinimum Unsigned32, tpmAggrReportStatisticSumSquared Unsigned32, tpmAggrReportOverflowStatisticSumSquared Unsigned32, tpmAggrReportHCStatisticSumSquared Unsigned32, tpmAggrReportStatisticSumIX Unsigned32, tpmAggrReportOverflowStatisticSumIX Unsigned32, tpmAggrReportHCStatisticSumIX Unsigned32, tpmAggrReportStatisticSumIXSquared Unsigned32, tpmAggrReportOverflowStatisticSumIXSquared Unsigned32, tpmAggrReportHCStatisticSumIXSquared Unsigned32 } tpmAggrReportIndex OBJECT-TYPE SYNTAX Integer32 (0..2147483647) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The value of tpmAggrReportCntrlNumber for the report to which this entry belongs." ::= { tpmAggrReportEntry 1 } tpmAggrReportAppLocalIndex OBJECT-TYPE SYNTAX AppLocalIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION "The common application of the transactions aggregated in this entry." ::= { tpmAggrReportEntry 2 } tpmAggrReportTransMetricIndex OBJECT-TYPE SYNTAX TransactionMetricIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION "A unique index that identifies the transaction and metric associated with the statistics reported here." ::= { tpmAggrReportEntry 3 } tpmAggrReportServerAddress OBJECT-TYPE SYNTAX OCTET STRING (SIZE (0..108)) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The network layer address of the server host in this conversation. This is represented as an octet string with specific semantics and length as identified by the protocolDirLocalIndex component of the index. Since this object is an index variable, it is encoded in the index according to the index encoding rules. For example, if the protocolDirLocalIndex indicates an encapsulation of IP, this object is encoded as a length octet of 4, followed by the 4 octets of the IP address, in network byte order. If the associated tpmAggrReportCntrlAggregationType is equal to application(4) or client(2), then this object will be a null string and will be encoded simply as a length octet of 0." ::= { tpmAggrReportEntry 4 } tpmAggrReportApmNameClientID OBJECT-TYPE SYNTAX ClientID MAX-ACCESS not-accessible STATUS current DESCRIPTION "A unique ID assigned to the machine represented by this mapping. This ID is assigned by the agent using an implementation-specific algorithm." ::= { tpmAggrReportEntry 5 } tpmAggrReportStatisticN OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The count of the total number of data points for the specified metric. This number always represents the total size of the statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results for one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmAggrReportEntry 6 } tpmAggrReportOverflowStatisticN OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmAggrReportStatisticN counter has overflowed." ::= { tpmAggrReportEntry 7 } tpmAggrReportHCStatisticN OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmAggrReportStatisticN." ::= { tpmAggrReportEntry 8 } tpmAggrReportStatisticSumX OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The sum of all the data point values for the specified metric. This number always represents the total values of the statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmAggrReportEntry 9 } tpmAggrReportOverflowStatisticSumX OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmAggrReportStatisticSumX counter has overflowed." ::= { tpmAggrReportEntry 10 } tpmAggrReportHCStatisticSumX OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmAggrReportStatisticSumX." ::= { tpmAggrReportEntry 11 } tpmAggrReportStatisticMaximum OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The single maximum data point value observed during the study period for the specified metric. This number always represents the maximum value of any single statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmAggrReportEntry 12 } tpmAggrReportStatisticMinimum OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The single minimum data point value observed during the study period for the specified metric. This number always represents the minimum value of any single statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmAggrReportEntry 13 } tpmAggrReportStatisticSumSquared OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The sum of all the squared data point values for the specified metric. This number always represents the total of the squared values of the statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmAggrReportEntry 14 } tpmAggrReportOverflowStatisticSumSquared OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmAggrReportStatisticSumSquared counter has overflowed." ::= { tpmAggrReportEntry 15 } tpmAggrReportHCStatisticSumSquared OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmAggrReportStatisticSumSquared." ::= { tpmAggrReportEntry 16 } tpmAggrReportStatisticSumIX OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "For each interval, each data point is associated with a value I, I = 1..N where N is the number of data points, tpmAggrReportStatisticN. IX is the multiplication of the data point value with the current I. This value along with the other statistics values allow the calculation of the slope of the least-squares line through the data points." ::= { tpmAggrReportEntry 17 } tpmAggrReportOverflowStatisticSumIX OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmAggrReportStatisticSumIX counter has overflowed." ::= { tpmAggrReportEntry 18 } tpmAggrReportHCStatisticSumIX OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmAggrReportStatisticSumIX." ::= { tpmAggrReportEntry 19 } tpmAggrReportStatisticSumIXSquared OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "For each interval, each data point is associated with a value I, I = 1..N where N is the number of data points, tpmAggrReportStatisticN. IX is the multiplication of the data point value with the current I. This value along with the other statistics values allow the calculation of the slope of the least-squares line through the data points." ::= { tpmAggrReportEntry 20 } tpmAggrReportOverflowStatisticSumIXSquared OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmAggrReportStatisticSumIXSquared counter has overflowed." ::= { tpmAggrReportEntry 21 } tpmAggrReportHCStatisticSumIXSquared OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmAggrReportStatisticSumIXSquared." ::= { tpmAggrReportEntry 22 } -- -- The tpmCurrentReportsGroup -- -- -- TPM Current Transaction Table -- -- This table will contain entries associated with an -- apmReportControlEntry which are a current 'snapshot' of the -- metrics being collected in association with a set -- of TPM related application transactions. -- Once completed, a history of these transactions is retained. -- Completion is indicated by the -- value of the tpmCurrReportCompletion object. -- tpmCurrReportTable OBJECT-TYPE SYNTAX SEQUENCE OF TpmCurrReportEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains all sub-flow metrics for transactions that have been started but have not yet finished, i.e. current, and a history of those that have finished, i.e., completed." ::= { tpmReports 3 } tpmCurrReportEntry OBJECT-TYPE SYNTAX TpmCurrReportEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A conceptual row in the tpmCurrReportTable. The tpmAggrReportControlIndex value in the index identifies the tpmAggrReportCntrlEntry on whose behalf this entry was created. The tpmCurrReportAppLocalIndex value in the index identifies the application protocol that is begin reported. The protocolDirLocalIndex value in the index identifies the network layer protocol of the tpmAggrReportServerAddress. When the associated tpmAggrReportCntrlAggregationType value is equal to applications(4), this value will equal 0. The tpmCurrReportServerAddress value in the index identifies the network layer address of the server in traffic flows aggregated in this entry. The tpmCurrReportCurrentApmNameClientID value in the index identifies the network layer address of the client in traffic flows aggregated in this entry. The tpmCurrReportCurrentMetricIndex value in the index identifies the transported application protocol of the traffic flows aggregated in this entry. Note that the order of protocolDirLocalIndex variables is the opposite of that in the RMON2 MIB (application.network instead of network.application) so that the report entries are sorted by application first, server second and client third. The tpmCurrReportCntrIndex value in the index identifies the tpmAggrReportCntrlEntry on whose behalf this entry was created. The tpmCurrReportMetricIndex value in the index identifies the metric and protocol of the tpmCurrReportServerAddress, via the tpmTransactionMetricDir table. An example of the indexing of this table is tpmCurrReportStatisticN.3.34.262.18.4.128.2.6.6.3256521.29667" INDEX { tpmAggrReportCntrlIndex, tpmCurrReportAppLocalIndex, -- Application Layer tpmCurrReportTransMetricIndex, -- Metric and Protocol protocolDirLocalIndex, -- Network Layer tpmCurrReportServerAddress, tpmCurrReportApmNameClientID, tpmCurrReportApmTransactionID } ::= { tpmCurrReportTable 1 } TpmCurrReportEntry ::= SEQUENCE { tpmCurrReportAppLocalIndex AppLocalIndex, tpmCurrReportTransMetricIndex TransactionMetricIndex, tpmCurrReportServerAddress OCTET STRING, tpmCurrReportApmNameClientID ClientID, tpmCurrReportApmTransactionID Integer32, tpmCurrReportMetricValue Unsigned32 } tpmCurrReportAppLocalIndex OBJECT-TYPE SYNTAX AppLocalIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION "The common application of the transactions reported in this entry." ::= { tpmCurrReportEntry 1 } tpmCurrReportTransMetricIndex OBJECT-TYPE SYNTAX TransactionMetricIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION "A unique index that identifies the transaction and metric associated with the statistics reported here." ::= { tpmCurrReportEntry 2 } tpmCurrReportServerAddress OBJECT-TYPE SYNTAX OCTET STRING (SIZE (0..108)) MAX-ACCESS not-accessible STATUS current DESCRIPTION "The network server address for this tpmCurrEntry. This is represented as an octet string with specific semantics and length as identified by the protocolDirLocalIndex component of the index. For example, if the protocolDirLocalIndex indicates an encapsulation of IP, this object is encoded as a length octet of 4, followed by the 4 octets of the IP address, in network byte order." ::= { tpmCurrReportEntry 3 } tpmCurrReportApmNameClientID OBJECT-TYPE SYNTAX ClientID MAX-ACCESS not-accessible STATUS current DESCRIPTION "A unique ID assigned to the machine represented by this mapping. This ID is assigned by the agent using an implementation-specific algorithm." ::= { tpmCurrReportEntry 4 } tpmCurrReportApmTransactionID OBJECT-TYPE SYNTAX Integer32 (0..2147483647) MAX-ACCESS read-only STATUS current DESCRIPTION "A unique value for this transaction amongst other transactions sharing the same application, transaction-layer protocol and metric and server and client addresses. Implementations may choose to use the value of the client's source port, when possible. If the tpmAggrReportCntrlApmControlIndex is non-zero, then this object is set to the corresponding apmTransactionID object in the APM MIB [APM]." ::= { tpmCurrReportEntry 5 } tpmCurrReportMetricValue OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The current value of the metric being evaluated. For some transaction types this value may be 0, e.g., the current round trip time for a DNS query. For other transaction types this will represent the current value of a continuously measured metric, e.g., the current throughput of an FTP transaction." ::= { tpmCurrReportEntry 6 } tpmCurrReportCompletion OBJECT-TYPE SYNTAX INTEGER { current(1), completed(2) } MAX-ACCESS read-only STATUS current DESCRIPTION "The status of this transactione. A may be current or completed." ::= { tpmCurrReportEntry 7 } tpmCurrReportSize OBJECT-TYPE SYNTAX Integer32 MAX-ACCESS read-write STATUS current DESCRIPTION "The maximum number of completed transactions desired to be retained in the tpmCurrReportTable. If the agent doesn't have enough resources to retain this many, it will retain as many as possible. Regardless of this value, the agent must attempt to keep records for all current transactions it is monitoring." ::= { tpmReports 5 } -- -- The tpmExceptionReportsGroup -- -- -- TPM Exception Report Table -- -- This table will contain the sub-flows related to an -- apmExceptionTable entry. -- tpmExcpReportTable OBJECT-TYPE SYNTAX SEQUENCE OF TpmExcpReportEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "This table contains all sub-flow metrics for transactions that have been tagged by the apmExceptionTable filter as having had poor performance." ::= { tpmReports 6 } tpmExcpReportEntry OBJECT-TYPE SYNTAX TpmExcpReportEntry MAX-ACCESS not-accessible STATUS current DESCRIPTION "A conceptual row in the tpmExcpReportTable. This table contains aggregated information associated with exceptions counted in the apmExceptionTable. The information is aggregated in a manner identical to the aggregation in the tpmAggrReportTable, with the exception that data only from transactions associated with a flagged application is included. The indexing into this table follows the indexing in the APM MIB but adds the tpmTransMetricIndex to identify the sub-application transaction and metric pair." INDEX { tpmExcpReportAppLocalIndex, -- Application tpmExcpReportApmResponsivenessType, -- Responsiveness Type tpmExcpReportApmExceptionIndex, -- Linkage to ApmExceptions tpmExcpReportTransMetricIndex -- Metric and Protocol } ::= { tpmExcpReportTable 1 } TpmExcpReportEntry ::= SEQUENCE { tpmExcpReportAppLocalIndex AppLocalIndex, tpmExcpReportApmResponsivenessType INTEGER, tpmExcpReportApmExceptionIndex Integer32, tpmExcpReportTransMetricIndex TransactionMetricIndex, tpmExcpReportStatisticN Unsigned32, tpmExcpReportOverflowStatisticN Unsigned32, tpmExcpReportHCStatisticN Unsigned32, tpmExcpReportStatisticSumX Unsigned32, tpmExcpReportOverflowStatisticSumX Unsigned32, tpmExcpReportHCStatisticSumX Unsigned32, tpmExcpReportStatisticMaximum Unsigned32, tpmExcpReportStatisticMinimum Unsigned32, tpmExcpReportStatisticSumSquared Unsigned32, tpmExcpReportOverflowStatisticSumSquared Unsigned32, tpmExcpReportHCStatisticSumSquared Unsigned32, tpmExcpReportStatisticSumIX Unsigned32, tpmExcpReportOverflowStatisticSumIX Unsigned32, tpmExcpReportHCStatisticSumIX Unsigned32, tpmExcpReportStatisticSumIXSquared Unsigned32, tpmExcpReportOverflowStatisticSumIXSquared Unsigned32, tpmExcpReportHCStatisticSumIXSquared Unsigned32 } tpmExcpReportAppLocalIndex OBJECT-TYPE SYNTAX AppLocalIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION "The common application of the transactions reported in this entry." ::= { tpmExcpReportEntry 1 } tpmExcpReportApmResponsivenessType OBJECT-TYPE SYNTAX INTEGER { transactionOriented(1), throughputOriented(2), streamingOriented(3) } MAX-ACCESS not-accessible STATUS current DESCRIPTION "This object describes and configures the agent's support for application performance measurement for this application. There are 3 types of measurements for different types of applications. Refer to the description in the APM MIB [APM]." ::= { tpmExcpReportEntry 2 } tpmExcpReportApmExceptionIndex OBJECT-TYPE SYNTAX Integer32 (1..65535) MAX-ACCESS not-accessible STATUS current DESCRIPTION "An index that associates this tpmExcpReportEntry directly with an existing apmExceptionEntry." ::= { tpmExcpReportEntry 3 } tpmExcpReportTransMetricIndex OBJECT-TYPE SYNTAX TransactionMetricIndex MAX-ACCESS not-accessible STATUS current DESCRIPTION "A unique index that identifies the transaction and metric associated with the data reported here." ::= { tpmExcpReportEntry 4 } tpmExcpReportStatisticN OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The count of the total number of data points for the specified metric. This number always represents the total size of the statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmExcpReportEntry 5 } tpmExcpReportOverflowStatisticN OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmExcpReportStatisticN counter has overflowed." ::= { tpmExcpReportEntry 6 } tpmExcpReportHCStatisticN OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmExcpReportStatisticN." ::= { tpmExcpReportEntry 7 } tpmExcpReportStatisticSumX OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The sum of all the data point values for the specified metric. This number always represents the total values of the statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmExcpReportEntry 8 } tpmExcpReportOverflowStatisticSumX OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmExcpReportStatisticSumX counter has overflowed." ::= { tpmExcpReportEntry 9 } tpmExcpReportHCStatisticSumX OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmExcpReportStatisticSumX." ::= { tpmExcpReportEntry 10 } tpmExcpReportStatisticMaximum OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The single maximum data point value observed during the study period for the specified metric. This number always represents the maximum value of any single statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmExcpReportEntry 11 } tpmExcpReportStatisticMinimum OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The single minimum data point value observed during the study period for the specified metric. This number always represents the minimum value of any single statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmExcpReportEntry 12 } tpmExcpReportStatisticSumSquared OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The sum of all the squared data point values for the specified metric. This number always represents the total of the squared values of the statistical datum analyzed. Each metric specifies the exact meaning of this object. This value represents the results of one metric and is related directly to the specific parameters of the metric and the Server and Client addresses involved." ::= { tpmExcpReportEntry 13 } tpmExcpReportOverflowStatisticSumSquared OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmExcpReportStatisticSumSquared counter has overflowed." ::= { tpmExcpReportEntry 14 } tpmExcpReportHCStatisticSumSquared OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmExcpReportStatisticSumSquared." ::= { tpmExcpReportEntry 15 } tpmExcpReportStatisticSumIX OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "For each interval, each data point is associated with a value I, I = 1..N where N is the number of data points, tpmExcpReportStatisticSumIX is the multiplication of the data point value with the current I. This value along with the other statistics values allow the calculation of the slope of the least-squares line through the data points." ::= { tpmExcpReportEntry 16 } tpmExcpReportOverflowStatisticSumIX OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmExcpReportStatisticSumIX counter has overflowed." ::= { tpmExcpReportEntry 17 } tpmExcpReportHCStatisticSumIX OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmExcpReportStatisticSumIX." ::= { tpmExcpReportEntry 18 } tpmExcpReportStatisticSumIXSquared OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "For each interval, each data point is associated with a value I, I = 1..N where N is the number of data points, tpmExcpReportStatisticN. IX is the multiplication of the data point value with the current I. This value along with the other statistics values allow the calculation of the slope of the least-squares line through the data points." ::= { tpmExcpReportEntry 19 } tpmExcpReportOverflowStatisticSumIXSquared OBJECT-TYPE SYNTAX Unsigned32 (0..4294967295) MAX-ACCESS read-only STATUS current DESCRIPTION "The number of times the associated tpmExcpReportStatisticSumIXSquared counter has overflowed." ::= { tpmExcpReportEntry 20 } tpmExcpReportHCStatisticSumIXSquared OBJECT-TYPE SYNTAX Unsigned32 MAX-ACCESS read-only STATUS current DESCRIPTION "The high-capacity version of tpmExcpReportStatisticSumIXSquared." ::= { tpmExcpReportEntry 21 } -- -- TPM Conformance -- tpmCompliances OBJECT IDENTIFIER ::= { tpmConformance 1 } tpmGroups OBJECT IDENTIFIER ::= { tpmConformance 2 } -- -- TPM Compliance Statement -- -- Compliance statement defines the following TPM MIB -- implementation: -- -- - tpmCapabilitiesGroup (minimum) -- - tpmAggregateReportsGroup (minimum) -- - tpmCurrentReportsGroup (optional) -- - tpmExceptionReportsGroup (optional) tpmCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION "Describes the requirements for conformance to the TPM MIB." MODULE -- this module MANDATORY-GROUPS { tpmCapabilitiesGroup, tpmAggregateReportsGroup } ::= { tpmCompliances 1 } -- This compliance statement defines the following APM MIB -- optional groups in order for the TPM MIB to be used in -- drill-down support of the APM MIB measurements: -- -- - tpmApmReportControlGroup (optional) -- - tpmApmTransactionControlGroup (optional) -- - tpmApmExceptionControlGroup (optional) tpmApmMIBCompliance MODULE-COMPLIANCE STATUS current DESCRIPTION " Describes the requirements on the APM MIB for conformance to the TPM MIB operating in drill-down mode in support of APM MIB measurements" MODULE -- this module MANDATORY-GROUPS { tpmApmReportControlGroup, tpmApmTransactionControlGroup, tpmApmExceptionControlGroup } ::= { tpmCompliances 2 } -- -- TPM MIB Groups -- tpmCapabilitiesGroup OBJECT-GROUP OBJECTS { tpmClockResolution, tpmClockMaxSkew, tpmClockSource, tpmTransactionMetricDirLastChange, tpmTransactionMetricProtocolIndex, tpmTransactionMetricMetricIndex, tpmTransactionMetricDirConfig, tpmMetricDefType, tpmMetricDefDirType, tpmMetricDefName, tpmMetricDefReference } STATUS current DESCRIPTION "" ::= { tpmGroups 1 } tpmAggregateReportsGroup OBJECT-GROUP OBJECTS { tpmAggrReportCntrlApmControlIndex, tpmAggrReportCntrlDataSource, tpmAggrReportCntrlAggregationType, tpmAggrReportCntrlInterval, tpmAggrReportCntrlRequestedSize, tpmAggrReportCntrlGrantedSize, tpmAggrReportCntrlRequestedReports, tpmAggrReportCntrlGrantedReports, tpmAggrReportCntrlStartTime, tpmAggrReportCntrlReportNumber, tpmAggrReportCntrlInsertsDenied, tpmAggrReportCntrlDroppedFrames, tpmAggrReportCntrlOwner, tpmAggrReportCntrlStatus, tpmAggrReportStatisticN, tpmAggrReportOverflowStatisticN, tpmAggrReportHCStatisticN, tpmAggrReportStatisticSumX, tpmAggrReportOverflowStatisticSumX, tpmAggrReportHCStatisticSumX, tpmAggrReportStatisticMaximum, tpmAggrReportStatisticMinimum, tpmAggrReportStatisticSumSquared, tpmAggrReportOverflowStatisticSumSquared, tpmAggrReportHCStatisticSumSquared, tpmAggrReportStatisticSumIX, tpmAggrReportOverflowStatisticSumIX, tpmAggrReportHCStatisticSumIX, tpmAggrReportStatisticSumIXSquared, tpmAggrReportOverflowStatisticSumIXSquared, tpmAggrReportHCStatisticSumIXSquared } STATUS current DESCRIPTION "" ::= { tpmGroups 2 } tpmCurrentReportsGroup OBJECT-GROUP OBJECTS { tpmCurrReportMetricValue, tpmCurrReportCompletion, tpmCurrReportSize } STATUS current DESCRIPTION "" ::= { tpmGroups 3 } tpmExceptionReportsGroup OBJECT-GROUP OBJECTS { tpmExcpReportStatisticN, tpmExcpReportOverflowStatisticN, tpmExcpReportHCStatisticN, tpmExcpReportStatisticSumX, tpmExcpReportOverflowStatisticSumX, tpmExcpReportHCStatisticSumX, tpmExcpReportStatisticMaximum, tpmExcpReportStatisticMinimum, tpmExcpReportStatisticSumSquared, tpmExcpReportOverflowStatisticSumSquared, tpmExcpReportHCStatisticSumSquared, tpmExcpReportStatisticSumIX, tpmExcpReportOverflowStatisticSumIX, tpmExcpReportHCStatisticSumIX, tpmExcpReportStatisticSumIXSquared, tpmExcpReportOverflowStatisticSumIXSquared, tpmExcpReportHCStatisticSumIXSquared } STATUS current DESCRIPTION "" ::= { tpmGroups 4 } tpmApmReportControlGroup OBJECT-GROUP OBJECTS { apmReportControlIndex, apmReportControlDataSource, apmReportControlControlInterval, apmReportControlRequestedSize, apmReportControlRequestedReports, apmReportControlStartTime, apmReportControlReportNumber, apmReportControlOwner, apmReportControlStatus } STATUS current DESCRIPTION "" ::= { tpmGroups 5 } tpmApmTransactionControlGroup OBJECT-GROUP OBJECTS { apmTransactionID } STATUS current DESCRIPTION "" ::= { tpmGroups 6 } tpmApmExceptionControlGroup OBJECT-GROUP OBJECTS { apmExceptionIndex } STATUS current DESCRIPTION "" ::= { tpmGroups 7 } END -- -- Copyright (C) The Internet Society (2002). All Rights Reserved. -- -- This document and translations of it may be copied and furnished to -- others, and derivative works that comment on or otherwise explain it -- or assist in its implementation may be prepared, copied, published -- and distributed, in whole or in part, without restriction of any -- kind, provided that the above copyright notice and this paragraph are -- included on all such copies and derivative works. However, this doc- -- ument itself may not be modified in any way, such as by removing the -- copyright notice or references to the Internet Society or other -- Internet organizations, except as needed for the purpose of develop- -- ing Internet standards in which case the procedures for copyrights -- defined in the Internet Standards process must be followed, or as -- required to translate it into languages other than English. -- -- The limited permissions granted above are perpetual and will not be -- revoked by the Internet Society or its successors or assigns. -- -- This document and the information contained herein is provided on an -- "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING -- TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING -- BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION -- HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MER- -- CHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE."