29West
Subscribe

From OpenNMS

Jump to: navigation, search

29West make a number of messaging products, mainly focused on financial services. They do support SNMP in their products, so OpenNMS can gather the information.

The following instructions should work with almost any release of OpenNMS, but are known to work on 1.6 and later.

It is possible to include these collections by default in OpenNMS, but since the 29West agent runs on a different port than the standard SNMP agent (port 11161 vs. 161) there is a little extra configuration involved. Also, since the 29West agent only supports their objects, it is required that a standard SNMP agent (such as the Linux Net-SNMP agent used in the example below) is installed and running.

Like any OpenNMS service, we have to add it to the system. There are a number of ways to do this, but in this example we'll do it in capsd-configuration.xml using the LoopPlugin:

<protocol-plugin protocol="29West" class-name="org.opennms.netmgt.capsd.plugins.LoopPlugin" scan="off" user-defined="true">
<protocol-configuration scan="enable" user-defined="false">
<specific>x.x.x.x</specific>
</protocol-configuration>
</protocol-plugin>

replacing "x.x.x.x" with the IP address of the 29 West server. Multiple servers can be added with multiple <specific> tags.

The next step is to modify the collectd-configuration.xml file to collect on our new "29West" service:

<service name="29West" interval="300000" user-defined="false" status="on">
<parameter key="collection" value="29West"/>
<parameter key="version" value="v2c"/>
<parameter key="port" value="11161"/>
</service>

Note that we point to a specific "29West" collection schema, the 11161 port and that we force SNMP version 2c, which is required.

Remember to add the service at the bottom of this file as well.

<collector service="29West" class-name="org.opennms.netmgt.collectd.SnmpCollector"/>

The third step is to add the 29 West collection schema to datacollection-config.xml. Currently OpenNMS is configured to collect on a large number of data points related to the 29 West applications, but more can be added.

  <snmp-collection name="29West" snmpStorageFlag="select">
    <rrd step="300">
      <rra>RRA:AVERAGE:0.5:1:2016</rra>
      <rra>RRA:AVERAGE:0.5:12:1488</rra>
      <rra>RRA:AVERAGE:0.5:288:366</rra>
      <rra>RRA:MAX:0.5:288:366</rra>
      <rra>RRA:MIN:0.5:288:366</rra>
    </rrd>

<groups>
<!-- 29West source LBT-RM transports -->
<group name="29west-source-LBT-RM" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.1" instance="0" alias="tnSLbtrmAgDgramSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.2" instance="0" alias="tnSLbtrmAgBytesSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.3" instance="0" alias="tnSLbtrmAgNPckRcved" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.4" instance="0" alias="tnSLbtrmAgNRcved" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.5" instance="0" alias="tnSLbtrmAgNIgnored" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.6" instance="0" alias="tnSLbtrmAgNShed" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.7" instance="0" alias="tnSLbtrmAgNRxDlayIg" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.8" instance="0" alias="tnSLbtrmAgRxsSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.1.3.9" instance="0" alias="tnSLbtrmAgRxBytSent" type="Counter64" />
</group>

<!-- 29West source LBT-RU transports -->
<group name="29west-source-LBT-RM" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.1" instance="0" alias="tnSLbtruAgDgramSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.2" instance="0" alias="tnSLbtruAgBytesSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.3" instance="0" alias="tnSLbtruAgNPckRcved" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.4" instance="0" alias="tnSLbtruAgNRcved" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.5" instance="0" alias="tnSLbtruAgNIgnored" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.6" instance="0" alias="tnSLbtruAgNShed" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.7" instance="0" alias="tnSLbtruAgNRxDlayIg" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.8" instance="0" alias="tnSLbtruAgRxsSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.9" instance="0" alias="tnSLbtruAgNumClient" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.2.3.10" instance="0" alias="tnSLbtruAgRxBytSent" type="Counter64" />
</group>

<!-- 29West TCP source per-transport management information -->
<group name="29west-source-TCP" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.3.3.1" instance="0" alias="tnSTcpAggNumClients" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.3.3.2" instance="0" alias="tnSTcpAggBytesBuffd" type="Counter64" />
</group>

<!-- 29West LBT-IPC source per-transport management information -->
<group name="29west-source-LBT-IPC" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.4.3.1" instance="0" alias="tnSLbtipcAgNumClnts" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.4.3.2" instance="0" alias="tnSLbtipcAgMsgsSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.1.4.3.3" instance="0" alias="tnSLbtipcAgByteSent" type="Counter64" />
</group>

<!-- 29West LBT-RM receiver per-transport management information -->
<group name="29west-receiver-LBT-RM" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.1"  instance="0" alias="tnRLbtrmAgDgrmRcved" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.2"  instance="0" alias="tnRLbtrmAgByteRcved" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.3"  instance="0" alias="tnRLbtrmAgNkPcktSnt" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.4"  instance="0" alias="tnRLbtrmAgNaksSent"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.5"  instance="0" alias="tnRLbtrmAgLost"      type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.6"  instance="0" alias="tnRLbtrmAgNcfIgnred" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.7"  instance="0" alias="tnRLbtrmAgNcfShed"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.8"  instance="0" alias="tnRLbtrmAgNcfRxDlay" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.9"  instance="0" alias="tnRLbtrmAgNcfUnknwn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.10" instance="0" alias="tnRLbtrmAgNkStmMnMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.11" instance="0" alias="tnRLbtrmAgNkStmMnMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.12" instance="0" alias="tnRLbtrmAgNkStmMMn"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.13" instance="0" alias="tnRLbtrmAgNkStmMMx"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.14" instance="0" alias="tnRLbtrmAgNkStmMxMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.15" instance="0" alias="tnRLbtrmAgNkStmMxMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.16" instance="0" alias="tnRLbtrmAgNakTxMnMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.17" instance="0" alias="tnRLbtrmAgNakTxMnMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.18" instance="0" alias="tnRLbtrmAgNakTMMn"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.19" instance="0" alias="tnRLbtrmAgNakTMMx"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.20" instance="0" alias="tnRLbtrmAgNakTxMxMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.21" instance="0" alias="tnRLbtrmAgNakTxMxMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.22" instance="0" alias="tnRLbtrmAgDupData"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.23" instance="0" alias="tnRLbtrmAgUnrcvdTxw" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.24" instance="0" alias="tnRLbtrmAgUnrcvdTmo" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.25" instance="0" alias="tnRLbtrmAgLbmMsgRvd" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.26" instance="0" alias="tnRLbtrmAgLbmMsgNTR" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.27" instance="0" alias="tnRLbtrmAgLbmReqRcv" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.28" instance="0" alias="tnRLbtrmAgDgmDrpSze" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.29" instance="0" alias="tnRLbtrmAgDgmDrpTyp" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.30" instance="0" alias="tnRLbtrmAgDgmDrpVer" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.31" instance="0" alias="tnRLbtrmAgDgmDrpHdr" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.1.3.32" instance="0" alias="tnRLbtrmAgDgmDrpOth" type="Counter64" />
</group>

<!-- 29West LBT-RU receiver per-transport management information -->
<group name="29west-receiver-LBT-RU" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.1"  instance="0" alias="tnRLbtruAgDgrmRcved" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.2"  instance="0" alias="tnRLbtruAgByteRcved" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.3"  instance="0" alias="tnRLbtruAgNkPcktSnt" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.4"  instance="0" alias="tnRLbtruAgNaksSent"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.5"  instance="0" alias="tnRLbtruAgLost"      type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.6"  instance="0" alias="tnRLbtruAgNcfIgnred" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.7"  instance="0" alias="tnRLbtruAgNcfShed"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.8"  instance="0" alias="tnRLbtruAgNcfRxDlay" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.9"  instance="0" alias="tnRLbtruAgNcfUnknwn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.10" instance="0" alias="tnRLbtruAgNkStmMnMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.11" instance="0" alias="tnRLbtruAgNkStmMnMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.12" instance="0" alias="tnRLbtruAgNkStmMMn"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.13" instance="0" alias="tnRLbtruAgNkStmMMx"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.14" instance="0" alias="tnRLbtruAgNkStmMxMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.15" instance="0" alias="tnRLbtruAgNkStmMxMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.16" instance="0" alias="tnRLbtruAgNakTxMnMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.17" instance="0" alias="tnRLbtruAgNakTxMnMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.18" instance="0" alias="tnRLbtruAgNkTxMenMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.19" instance="0" alias="tnRLbtruAgNkTxMenMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.20" instance="0" alias="tnRLbtruAgNakTxMxMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.21" instance="0" alias="tnRLbtruAgNakTxMxMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.22" instance="0" alias="tnRLbtruAgDupData"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.23" instance="0" alias="tnRLbtruAgUnrcvdTxw" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.24" instance="0" alias="tnRLbtruAgUnrcvdTmo" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.25" instance="0" alias="tnRLbtruAgLbmMsgRcv" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.26" instance="0" alias="tnRLbtruAgLbmMsgNTR" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.27" instance="0" alias="tnRLbtruAgLbmReqRcv" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.28" instance="0" alias="tnRLbtruAgDgmDrpSze" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.29" instance="0" alias="tnRLbtruAgDgmDrpTyp" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.30" instance="0" alias="tnRLbtruAgDgmDrpVer" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.31" instance="0" alias="tnRLbtruAgDgmDrpHdr" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.32" instance="0" alias="tnRLbtruAgDgmDrpSid" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.2.3.33" instance="0" alias="tnRLbtruAgDgmDrpOth" type="Counter64" />
</group>


<!-- 29West TCP receiver per-transport management information -->
<group name="29west-receiver-TCP" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.3.3.1" instance="0" alias="tnwRTcpAgBytesRcv"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.3.3.2" instance="0" alias="tnwRTcpAgLbmMsgRcv" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.3.3.3" instance="0" alias="tnwRTcpAgLbmMsgNTR" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.3.3.4" instance="0" alias="tnwRTcpAgLbmReqRcv" type="Counter64" />
</group>

<!-- LBT-IPC receiver aggregate management information -->
<group name="29west-receiver-LBT-IPC" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.4.3.1" instance="0" alias="tnwRLbtipcAgMsgsRcv" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.4.3.2" instance="0" alias="tnwRLbtipcAgByteRcv" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.4.3.3" instance="0" alias="tnwRLbtipcAgLbmMRcv" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.4.3.4" instance="0" alias="tnwRLbtipcAgLbmMNTR" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.2.4.3.5" instance="0" alias="tnwRLbtipcAgLbmReqR" type="Counter64" />
</group>

<!-- Event queue aggregate management information -->
<group name="29west-queue-agg" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.1"  instance="0" alias="tnwEQADataMsgs"      type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.2"  instance="0" alias="tnwEQADataMsgsTot"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.3"  instance="0" alias="tnwEQADataMsgMinMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.4"  instance="0" alias="tnwEQADataMsgMinMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.5"  instance="0" alias="tnwEQADataMsgMenMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.6"  instance="0" alias="tnwEQADataMsgMenMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.7"  instance="0" alias="tnwEQADataMsgMaxMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.8"  instance="0" alias="tnwEQADataMsgMaxMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.9"  instance="0" alias="tnwEQARespMsgs"      type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.10" instance="0" alias="tnwEQARespMsgsTot"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.11" instance="0" alias="tnwEQARespMsgMinMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.12" instance="0" alias="tnwEQARespMsgMinMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.13" instance="0" alias="tnwEQARespMsgMenMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.14" instance="0" alias="tnwEQARespMsgMenMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.15" instance="0" alias="tnwEQARespMsgMaxMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.16" instance="0" alias="tnwEQARespMsgMaxMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.17" instance="0" alias="tnwEQATlImMsgs"      type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.18" instance="0" alias="tnwEQATlImMsgsTot"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.19" instance="0" alias="tnwEQATlImMsgMinMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.20" instance="0" alias="tnwEQATlImMsgMinMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.21" instance="0" alias="tnwEQATlImMsgMenMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.22" instance="0" alias="tnwEQATlImMsgMenMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.23" instance="0" alias="tnwEQATlImMsgMaxMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.24" instance="0" alias="tnwEQATlImMsgMaxMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.25" instance="0" alias="tnwEQAWrcvMsgs"      type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.26" instance="0" alias="tnwEQAWrcvMsgTot"    type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.27" instance="0" alias="tnwEQAWrcvMsgMinMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.28" instance="0" alias="tnwEQAWrcvMsgMinMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.29" instance="0" alias="tnwEQAWrcvMsgMenMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.30" instance="0" alias="tnwEQAWrcvMsgMenMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.31" instance="0" alias="tnwEQAWrcvMsgMaxMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.32" instance="0" alias="tnwEQAWrcvMsgMaxMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.33" instance="0" alias="tnwEQAIoEvents"      type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.34" instance="0" alias="tnwEQAIoEventsTot"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.35" instance="0" alias="tnwEQAIoEvtsMinMin"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.36" instance="0" alias="tnwEQAIoEvtsMinMax"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.37" instance="0" alias="tnwEQAIoEvtsMeanMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.38" instance="0" alias="tnwEQAIoEvtsMeanMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.39" instance="0" alias="tnwEQAIoEvtsMaxMin"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.40" instance="0" alias="tnwEQAIoEvtsMaxMax"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.41" instance="0" alias="tnwEQATmrEvents"     type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.42" instance="0" alias="tnwEQATmrEventsTot"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.43" instance="0" alias="tnwEQATmrEvtsMinMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.44" instance="0" alias="tnwEQATmrEvtsMinMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.45" instance="0" alias="tnwEQATmrEvtsMenMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.46" instance="0" alias="tnwEQATmrEvtsMenMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.47" instance="0" alias="tnwEQATmrEvtsMaxMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.48" instance="0" alias="tnwEQATmrEvtsMaxMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.49" instance="0" alias="tnwEQASrcEvts"       type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.50" instance="0" alias="tnwEQASrcEvtsTot"    type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.51" instance="0" alias="tnwEQASrcEvtsMinMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.52" instance="0" alias="tnwEQASrcEvtsMinMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.53" instance="0" alias="tnwEQASrcEvtsMenMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.54" instance="0" alias="tnwEQASrcEvtsMenMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.55" instance="0" alias="tnwEQASrcEvtsMaxMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.56" instance="0" alias="tnwEQASrcEvtsMaxMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.57" instance="0" alias="tnwEQAUnblockEvents" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.58" instance="0" alias="tnwEQAUnblockEvtTot" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.59" instance="0" alias="tnwEQACnclEvents"    type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.60" instance="0" alias="tnwEQACnclEvtTot"    type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.61" instance="0" alias="tnwEQACnclEvtMinMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.62" instance="0" alias="tnwEQACnclEvtMinMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.63" instance="0" alias="tnwEQACnclEvtMenMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.64" instance="0" alias="tnwEQACnclEvtMenMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.65" instance="0" alias="tnwEQACnclEvtMaxMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.66" instance="0" alias="tnwEQACnclEvtMaxMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.67" instance="0" alias="tnwEQACxtSEvents"    type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.68" instance="0" alias="tnwEQACxtSEvtTot"    type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.69" instance="0" alias="tnwEQACxtSEvtMinMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.70" instance="0" alias="tnwEQACxtSEvtMinMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.71" instance="0" alias="tnwEQACxtSEvtMenMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.72" instance="0" alias="tnwEQACxtSEvtMenMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.73" instance="0" alias="tnwEQACxtSEvtMaxMin" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.74" instance="0" alias="tnwEQACxtSEvtMaxMax" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.75" instance="0" alias="tnwEQAEvents"        type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.76" instance="0" alias="tnwEQAEventsTot"     type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.77" instance="0" alias="tnwEQAAgeMinMin"     type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.78" instance="0" alias="tnwEQAAgeMinMax"     type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.79" instance="0" alias="tnwEQAAgeMeanMin"    type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.80" instance="0" alias="tnwEQAAgeMeanMax"    type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.81" instance="0" alias="tnwEQAAgeMaxMin"     type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.3.3.82" instance="0" alias="tnwEQAAgeMaxMax"     type="Counter64" />
</group>

<!-- Context aggregate management information -->
<group name="29west-context-agg" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.1"  instance="0" alias="tnwCxtAggTrDgmsSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.2"  instance="0" alias="tnwCxtAggTrByteSent" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.3"  instance="0" alias="tnwCxtAggTrDgmsRcvd" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.4"  instance="0" alias="tnwCxtAggTrByteRcvd" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.5"  instance="0" alias="tnwCxtAggTrDgmsDrpV" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.6"  instance="0" alias="tnwCxtAggTrDgmsDrpT" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.7"  instance="0" alias="tnwCxtAggTrDgmsDrpM" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.8"  instance="0" alias="tnwCxtAggTrDgmsSndF" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.9"  instance="0" alias="tnwCxtAggTrSrcTopic" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.10" instance="0" alias="tnwCxtAggTrRcvTopic" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.11" instance="0" alias="tnwCxtAggTrRcvUnrTp" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.12" instance="0" alias="tnwCxtAggLbtrmUnkMR" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.13" instance="0" alias="tnwCxtAggLbtruUnkMR" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.14" instance="0" alias="tnwCxtAggSendBlockd" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.15" instance="0" alias="tnwCxtAggSndWldBlk"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.16" instance="0" alias="tnwCxtAggRespBlked"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.3.17" instance="0" alias="tnwCxtAggRespWldBlk" type="Counter64" />
</group>

<!-- Context MIM LBT-RM source aggregate management information -->
<group name="29west-management-agg" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.1" instance="0" alias="tnwCxtMSLbtrmAgDS"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.2" instance="0" alias="tnwCxtMSLbtrmAgBS"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.3" instance="0" alias="tnwCxtMSLbtrmAgNPR"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.4" instance="0" alias="tnwCxtMSLbtrmAgNR"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.5" instance="0" alias="tnwCxtMSLbtrmAgNI"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.6" instance="0" alias="tnwCxtMSLbtrmAgNS"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.7" instance="0" alias="tnwCxtMSLbtrmAgNRDI" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.8" instance="0" alias="tnwCxtMSLbtrmAgRS"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.1.1.3.9" instance="0" alias="tnwCxtMSLbtrmAgRBS"  type="Counter64" />
</group>

<!-- Context MIM LBT-RM receiver aggregate management information -->
<group name="29west-receiver-agg" ifType="ignore">
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.1"  instance="0" alias="tnwCxtMRLbtrmAgDR"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.2"  instance="0" alias="tnwCxtMRLbtrmAgBR"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.3"  instance="0" alias="tnwCxtMRLbtrmAgNPS"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.4"  instance="0" alias="tnwCxtMRLbtrmAgNS"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.5"  instance="0" alias="tnwCxtMRLbtrmAgLost" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.6"  instance="0" alias="tnwCxtMRLbtrmAgNI"   type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.7"  instance="0" alias="tnwCxtMRLbtrmAgNSh"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.8"  instance="0" alias="tnwCxtMRLbtrmAgNRD"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.9"  instance="0" alias="tnwCxtMRLbtrmAgNUnk" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.10" instance="0" alias="tnwCxtMRLbtrmNSMnMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.11" instance="0" alias="tnwCxtMRLbtrmNSMnMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.12" instance="0" alias="tnwCxtMRLbtrmNSMeMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.13" instance="0" alias="tnwCxtMRLbtrmNSMeMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.14" instance="0" alias="tnwCxtMRLbtrmNSMxMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.15" instance="0" alias="tnwCxtMRLbtrmNSMxMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.16" instance="0" alias="tnwCxtMRLbtrmNTMnMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.17" instance="0" alias="tnwCxtMRLbtrmNTMnMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.18" instance="0" alias="tnwCxtMRLbtrmNTMeMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.19" instance="0" alias="tnwCxtMRLbtrmNTMeMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.20" instance="0" alias="tnwCxtMRLbtrmNTMxMn" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.21" instance="0" alias="tnwCxtMRLbtrmNTMxMx" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.22" instance="0" alias="tnwCxtMRLbtrmAgDupD" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.23" instance="0" alias="tnwCxtMRLbtrmAgUTxw" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.24" instance="0" alias="tnwCxtMRLbtrmAgUTmo" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.25" instance="0" alias="tnwCxtMRLbtrmLbmMR"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.26" instance="0" alias="tnwCxtMRLbtrmLbmMNR" type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.27" instance="0" alias="tnwCxtMRLbtrmLbmRR"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.28" instance="0" alias="tnwCxtMRLbtrmAgDDS"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.29" instance="0" alias="tnwCxtMRLbtrmAgDDT"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.30" instance="0" alias="tnwCxtMRLbtrmAgDDV"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.31" instance="0" alias="tnwCxtMRLbtrmAgDDH"  type="Counter64" />
   <mibObj oid=".1.3.6.1.4.1.29615.1.4.4.2.1.3.32" instance="0" alias="tnwCxtMRLbtrmAgDDO"  type="Counter64" />
</group>
</groups>

    <systems>
      <systemDef name="29West">
        <sysoidMask>.1.3.6.1.4.1.</sysoidMask>
        <collect>
          <includeGroup>29west-source-LBT-RM</includeGroup>
          <includeGroup>29west-source-LBT-RM</includeGroup>
          <includeGroup>29west-source-TCP</includeGroup>
          <includeGroup>29west-source-LBT-IPC</includeGroup>
          <includeGroup>29west-receiver-LBT-RM</includeGroup>
          <includeGroup>29west-receiver-LBT-RU</includeGroup>
          <includeGroup>29west-receiver-TCP</includeGroup>
          <includeGroup>29west-receiver-LBT-IPC</includeGroup>
          <includeGroup>29west-queue-agg</includeGroup>
          <includeGroup>29west-context-agg</includeGroup>
          <includeGroup>29west-management-agg</includeGroup>
          <includeGroup>29west-receiver-agg</includeGroup>

        </collect>
      </systemDef>
    </systems>
  </snmp-collection>

Once that is created, all that is left is to add the reports to snmp-graph.properties:

report.29west.lbt-rm.datagrams.name=29West LBT-RM source datagrams
report.29west.lbt-rm.datagrams.columns=tnSLbtrmAgDgramSent,tnSLbtrmAgBytesSent
report.29west.lbt-rm.datagrams.type=nodeSnmp
report.29west.lbt-rm.datagrams.command=--title="29West LBT-RM Source Datagrams" \
 DEF:datagrams={rrd1}:tnSLbtrmAgDgramSent:AVERAGE \
 DEF:bytes={rrd2}:tnSLbtrmAgBytesSent:AVERAGE \
 LINE2:datagrams#0000ff:"Datagrams " \
 GPRINT:datagrams:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:datagrams:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:datagrams:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbt-rm.retrans.name=29West LBT-RM retransmission datagrams
report.29west.lbt-rm.retrans.columns=tnSLbtrmAgRxsSent,tnSLbtrmAgRxBytSent
report.29west.lbt-rm.retrans.type=nodeSnmp
report.29west.lbt-rm.retrans.command=--title="29West LBT-RM Retransmission Datagrams" \
 DEF:datagrams={rrd1}:tnSLbtrmAgRxsSent:AVERAGE \
 DEF:bytes={rrd2}:tnSLbtrmAgRxBytSent:AVERAGE \
 LINE2:datagrams#0000ff:"Datagrams " \
 GPRINT:datagrams:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:datagrams:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:datagrams:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbt-rm.naks.name=29West LBT-RM NAK Packets
report.29west.lbt-rm.naks.columns=tnSLbtrmAgNPckRcved,tnSLbtrmAgNRcved,tnSLbtrmAgNIgnored,tnSLbtrmAgNShed,tnSLbtrmAgNRxDlayIg
report.29west.lbt-rm.naks.type=nodeSnmp
report.29west.lbt-rm.naks.command=--title="29West LBT-RM NAK Packets" \
 DEF:received={rrd1}:tnSLbtrmAgNPckRcved:AVERAGE \
 DEF:individual={rrd2}:tnSLbtrmAgNRcved:AVERAGE \
 DEF:ignored={rrd3}:tnSLbtrmAgNIgnored:AVERAGE \
 DEF:queuefull={rrd4}:tnSLbtrmAgNShed:AVERAGE \
 DEF:ratecontrol={rrd5}:tnSLbtrmAgNRxDlayIg:AVERAGE \
 LINE2:received#0000ff:"Packets " \
 GPRINT:received:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:received:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:received:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:individual#000000:"Individual " \
 GPRINT:individual:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:individual:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:individual:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:ignored#000000:"Ignored " \
 GPRINT:ignored:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:ignored:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:ignored:MAX:"Max  \\: %8.2lf %s" \
 LINE2:queuefull#0000ff:"Queue Full " \
 GPRINT:queuefull:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:queuefull:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:queuefull:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:ratecontrol#0000ff:"Rate Controlled " \
 GPRINT:ratecontrol:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:ratecontrol:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:ratecontrol:MAX:"Max  \\: %8.2lf %s\\n" 

report.29west.lbt-ru.datagrams.name=29West LBT-RU source datagrams
report.29west.lbt-ru.datagrams.columns=tnSLbtruAgDgramSent,tnSLbtruAgBytesSent
report.29west.lbt-ru.datagrams.type=nodeSnmp
report.29west.lbt-ru.datagrams.command=--title="29West LBT-RM Source Datagrams" \
 DEF:datagrams={rrd1}:tnSLbtruAgDgramSent:AVERAGE \
 DEF:bytes={rrd2}:tnSLbtruAgBytesSent:AVERAGE \
 LINE2:datagrams#0000ff:"Datagrams " \
 GPRINT:datagrams:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:datagrams:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:datagrams:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbt-ru.retrans.name=29West LBT-RU retransmission datagrams
report.29west.lbt-ru.retrans.columns=tnSLbtruAgRxsSent,tnSLbtruAgRxBytSent
report.29west.lbt-ru.retrans.type=nodeSnmp
report.29west.lbt-ru.retrans.command=--title="29West LBT-RM Retransmission Datagrams" \
 DEF:datagrams={rrd1}:tnSLbtruAgRxsSent:AVERAGE \
 DEF:bytes={rrd2}:tnSLbtruAgRxBytSent:AVERAGE \
 LINE2:datagrams#0000ff:"Datagrams " \
 GPRINT:datagrams:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:datagrams:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:datagrams:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbt-ru.naks.name=29West LBT-RU NAK Packets
report.29west.lbt-ru.naks.columns=tnSLbtruAgNPckRcved,tnSLbtruAgNRcved,tnSLbtruAgNIgnored,tnSLbtruAgNShed,tnSLbtruAgNRxDlayIg
report.29west.lbt-ru.naks.type=nodeSnmp
report.29west.lbt-ru.naks.command=--title="29West LBT-RM NAK Packets" \
 DEF:received={rrd1}:tnSLbtruAgNPckRcved:AVERAGE \
 DEF:individual={rrd2}:tnSLbtruAgNRcved:AVERAGE \
 DEF:ignored={rrd3}:tnSLbtruAgNIgnored:AVERAGE \
 DEF:queuefull={rrd4}:tnSLbtruAgNShed:AVERAGE \
 DEF:ratecontrol={rrd5}:tnSLbtruAgNRxDlayIg:AVERAGE \
 LINE2:received#0000ff:"Packets " \
 GPRINT:received:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:received:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:received:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:individual#000000:"Individual " \
 GPRINT:individual:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:individual:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:individual:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:ignored#000000:"Ignored " \
 GPRINT:ignored:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:ignored:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:ignored:MAX:"Max  \\: %8.2lf %s" \
 LINE2:queuefull#0000ff:"Queue Full " \
 GPRINT:queuefull:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:queuefull:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:queuefull:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:ratecontrol#0000ff:"Rate Controlled " \
 GPRINT:ratecontrol:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:ratecontrol:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:ratecontrol:MAX:"Max  \\: %8.2lf %s\\n" 

report.29west.lbt-ru.clients.name=29West LBT-RU Aggregate Clients
report.29west.lbt-ru.clients.columns=tnSLbtruAgNumClient
report.29west.lbt-ru.clients.type=nodeSnmp
report.29west.lbt-ru.clients.command=--title="29West LBT-RU Aggregate Clients" \
 DEF:clients={rrd1}:tnSLbtruAgNumClient:AVERAGE \
 LINE2:clients#000000:"Clients     " \
 GPRINT:clients:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:clients:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:clients:MAX:"Max  \\: %8.2lf %s" 

report.29west.tcp.clients.name=29West TCP Clients
report.29west.tcp.clients.columns=tnSTcpAggNumClients
report.29west.tcp.clients.type=nodeSnmp
report.29west.tcp.clients.command=--title="29West TCP Clients" \
 DEF:clients={rrd1}:tnSTcpAggNumClients:AVERAGE \
 LINE2:clients#000000:"Clients     " \
 GPRINT:clients:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:clients:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:clients:MAX:"Max  \\: %8.2lf %s" 

report.29west.tcp.buffered.name=29West TCP Aggregate Bytes Buffered
report.29west.tcp.buffered.columns=tnSTcpAggBytesBuffd
report.29west.tcp.buffered.type=nodeSnmp
report.29west.tcp.buffered.command=--title="29West TCP Aggregate Bytes Buffered" \
 DEF:bytes={rrd1}:tnSTcpAggBytesBuffd:AVERAGE \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbt-ipc.clients.name=29West LBT-IPC Aggregate Clients
report.29west.lbt-ipc.clients.columns=tnSLbtipcAgNumClnts
report.29west.lbt-ipc.clients.type=nodeSnmp
report.29west.lbt-ipc.clients.command=--title="29West LBT-IPC Aggregate Clients" \
 DEF:clients={rrd1}:tnSLbtipcAgNumClnts:AVERAGE \
 LINE2:clients#000000:"Clients     " \
 GPRINT:clients:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:clients:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:clients:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbt-ipc.msgs.name=29West LBT-IPC Messages and Bytes
report.29west.lbt-ipc.msgs.columns=tnSLbtipcAgMsgsSent,tnSLbtipcAgByteSent
report.29west.lbt-ipc.msgs.type=nodeSnmp
report.29west.lbt-ipc.msgs.command=--title="29West LBT-IPC Messages and Bytes" \
 DEF:messages={rrd1}:tnSLbtipcAgMsgsSent:AVERAGE \
 DEF:bytes={rrd2}:tnSLbtipcAgByteSent:AVERAGE \
 LINE2:messages#0000ff:"Messages " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-rm.msgs.name=29West LBT-RM Receiver Datagrams
report.29west.receiver.lbt-rm.msgs.columns=tnRLbtrmAgDgrmRcved,tnRLbtrmAgByteRcved,tnRLbtrmAgLost
report.29west.receiver.lbt-rm.msgs.type=nodeSnmp
report.29west.receiver.lbt-rm.msgs.command=--title="29West LBT-RM Receiver Datagrams" \
 DEF:datagrams={rrd1}:tnRLbtrmAgDgrmRcved:AVERAGE \
 DEF:bytes={rrd2}:tnRLbtrmAgByteRcved:AVERAGE \
 DEF:lost={rrd3}:tnRLbtrmAgLost:AVERAGE \
 LINE2:datagrams#0000ff:"Messages " \
 GPRINT:datagrams:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:datagrams:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:datagrams:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" \
 LINE2:lost#A00000:"Lost     " \
 GPRINT:lost:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:lost:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:lost:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-rm.naks.name=29West LBT-RM Aggregate NAKs
report.29west.receiver.lbt-rm.naks.columns=tnRLbtrmAgNaksSent,tnRLbtrmAgNkPcktSnt
report.29west.receiver.lbt-rm.naks.msgs.type=nodeSnmp
report.29west.receiver.lbt-rm.naks.command=--title="29West LBT-RM Aggregate NAKs" \
 DEF:naks={rrd1}:tnRLbtrmAgNaksSent:AVERAGE \
 DEF:packets={rrd2}:tnRLbtrmAgNkPcktSnt:AVERAGE \
 LINE2:naks#0000ff:"Naks " \
 GPRINT:naks:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:naks:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:naks:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:packets#000000:"Packets     " \
 GPRINT:packets:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:packets:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:packets:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-rm.ncfs.name=29West LBT-RM Aggregate NCFs
report.29west.receiver.lbt-rm.ncfs.columns=tnRLbtrmAgNcfIgnred,tnRLbtrmAgNcfShed,tnRLbtrmAgNcfRxDlay,tnRLbtrmAgNcfUnknwn
report.29west.receiver.lbt-rm.ncfs.msgs.type=nodeSnmp
report.29west.receiver.lbt-rm.ncfs.command=--title="29West LBT-RM Aggregate NCFs" \
 DEF:ignored={rrd1}:tnRLbtrmAgNcfIgnred:AVERAGE \
 DEF:shed={rrd2}:tnRLbtrmAgNcfShed:AVERAGE \
 DEF:retransmit={rrd3}:tnRLbtrmAgNcfRxDlay:AVERAGE \
 DEF:unknown={rrd4}:tnRLbtrmAgNcfUnknwn:AVERAGE \
 LINE2:ignored#0000ff:"Ignored " \
 GPRINT:ignored:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:ignored:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:ignored:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:shed#00ff00:"Shed " \
 GPRINT:shed:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:shed:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:shed:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:retransmit#ff0000:"Retransmit " \
 GPRINT:retransmit:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:retransmit:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:retransmit:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:unknown#000000:"Packets     " \
 GPRINT:unknown:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:unknown:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:unknown:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-rm.nakrepair.name=29West LBT-RM NAK Repair Time
report.29west.receiver.lbt-rm.nakrepair.columns=tnRLbtrmAgNkStmMnMn,tnRLbtrmAgNkStmMnMx,tnRLbtrmAgNkStmMMn,tnRLbtrmAgNkStmMMx,tnRLbtrmAgNkStmMxMn,tnRLbtrmAgNkStmMxMx
report.29west.receiver.lbt-rm.nakrepair.msgs.type=nodeSnmp
report.29west.receiver.lbt-rm.nakrepair.command=--title="29West LBT-RM NAK Repair Time" \
 DEF:minmin={rrd1}:tnRLbtrmAgNkStmMnMn:AVERAGE \
 DEF:maxmin={rrd2}:tnRLbtrmAgNkStmMnMx:AVERAGE \
 DEF:minmean={rrd3}:tnRLbtrmAgNkStmMMn:AVERAGE \
 DEF:maxmean={rrd4}:tnRLbtrmAgNkStmMMx:AVERAGE \
 DEF:minmax={rrd5}:tnRLbtrmAgNkStmMxMn:AVERAGE \
 DEF:maxmax={rrd6}:tnRLbtrmAgNkStmMxMx:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Repair Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Repair Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Repair Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Repair Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Repair Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Repair Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-rm.transmissions.name=29West LBT-RM Transmissions
report.29west.receiver.lbt-rm.transmissions.columns=tnRLbtrmAgNakTxMnMn,tnRLbtrmAgNakTxMnMx,tnRLbtrmAgNakTMMn,tnRLbtrmAgNakTMMx,tnRLbtrmAgNakTxMxMn,tnRLbtrmAgNakTxMxMx
report.29west.receiver.lbt-rm.transmissions.msgs.type=nodeSnmp
report.29west.receiver.lbt-rm.transmissions.command=--title="29West LBT-RM Transmissions" \
 DEF:minmin={rrd1}:tnRLbtrmAgNakTxMnMn:AVERAGE \
 DEF:maxmin={rrd2}:tnRLbtrmAgNakTxMnMx:AVERAGE \
 DEF:minmean={rrd3}:tnRLbtrmAgNakTMMn:AVERAGE \
 DEF:maxmean={rrd4}:tnRLbtrmAgNakTMMx:AVERAGE \
 DEF:minmax={rrd5}:tnRLbtrmAgNakTxMxMn:AVERAGE \
 DEF:maxmax={rrd6}:tnRLbtrmAgNakTxMxMx:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Transmissions " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Transmissions " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Transmissions" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Transmissions" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Transmissions " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Transmissions " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-rm.dataerrors.name=29West LBT-RM Receiver Datagram Errors
report.29west.receiver.lbt-rm.dataerrors.columns=tnRLbtrmAgDupData,tnRLbtrmAgUnrcvdTxw,tnRLbtrmAgUnrcvdTmo
report.29west.receiver.lbt-rm.dataerrors.type=nodeSnmp
report.29west.receiver.lbt-rm.dataerrors.command=--title="29West LBT-RM Receiver Datagram Errors" \
 DEF:duplicate={rrd1}:tnRLbtrmAgDupData:AVERAGE \
 DEF:winadvance={rrd2}:tnRLbtrmAgUnrcvdTxw:AVERAGE \
 DEF:NAKexpire={rrd3}:tnRLbtrmAgUnrcvdTmo:AVERAGE \
 LINE2:duplicate#0000ff:"Duplicates " \
 GPRINT:duplicate:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:duplicate:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:duplicate:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:winadvance#000000:"Window Adv" \
 GPRINT:winadvance:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:winadvance:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:winadvance:MAX:"Max  \\: %8.2lf %s" \
 LINE2:NAKexpire#A00000:"NAK Expire " \
 GPRINT:NAKexpire:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:NAKexpire:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:NAKexpire:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-rm.lbmtransport.name=29West LBT-RM LBM Transport
report.29west.receiver.lbt-rm.lbmtransport.columns=tnRLbtrmAgLbmMsgRvd,tnRLbtrmAgLbmMsgNTR,tnRLbtrmAgLbmReqRcv
report.29west.receiver.lbt-rm.lbmtransport.type=nodeSnmp
report.29west.receiver.lbt-rm.lbmtransport.command=--title="29West LBT-RM LBM Transport" \
 DEF:messages={rrd1}:tnRLbtrmAgLbmMsgRvd:AVERAGE \
 DEF:notopic={rrd2}:tnRLbtrmAgLbmMsgNTR:AVERAGE \
 DEF:requests={rrd3}:tnRLbtrmAgLbmReqRcv:AVERAGE \
 LINE2:messages#0000ff:"Messages " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:notopic#000000:"No Topic" \
 GPRINT:notopic:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:notopic:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:notopic:MAX:"Max  \\: %8.2lf %s" \
 LINE2:requests#A00000:"Requests " \
 GPRINT:requests:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:requests:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:requests:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-rm.dropdata.name=29West LBT-RM Dropped Datagrams
report.29west.receiver.lbt-rm.dropdata.columns=tnRLbtrmAgDgmDrpSze,tnRLbtrmAgDgmDrpTyp,tnRLbtrmAgDgmDrpVer,tnRLbtrmAgDgmDrpHdr,tnRLbtrmAgDgmDrpOth
report.29west.receiver.lbt-rm.dropdata.msgs.type=nodeSnmp
report.29west.receiver.lbt-rm.dropdata.command=--title="29West LBT-RM Dropped Datagrams" \
 DEF:size={rrd1}:tnRLbtrmAgDgmDrpSze:AVERAGE \
 DEF:type={rrd2}:tnRLbtrmAgDgmDrpTyp:AVERAGE \
 DEF:version={rrd3}:tnRLbtrmAgDgmDrpVer:AVERAGE \
 DEF:header={rrd4}:tnRLbtrmAgDgmDrpHdr:AVERAGE \
 DEF:other={rrd5}:tnRLbtrmAgDgmDrpOth:AVERAGE \
 LINE2:size#0000A0:"Bad Size " \
 GPRINT:size:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:size:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:size:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:type#0000ff:"Bad Type " \
 GPRINT:type:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:type:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:type:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:version#00a000:"Bad Version" \
 GPRINT:version:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:version:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:version:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:header#00ff00:"Bad Header " \
 GPRINT:header:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:header:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:header:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:other#ff0000:"Other " \
 GPRINT:other:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:other:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:other:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-ru.msgs.name=29West LBT-RU Receiver Datagrams
report.29west.receiver.lbt-ru.msgs.columns=tnRLbtruAgDgrmRcved,tnRLbtruAgByteRcved,tnRLbtruAgLost
report.29west.receiver.lbt-ru.msgs.type=nodeSnmp
report.29west.receiver.lbt-ru.msgs.command=--title="29West LBT-RU Receiver Datagrams" \
 DEF:datagrams={rrd1}:tnRLbtruAgDgrmRcved:AVERAGE \
 DEF:bytes={rrd2}:tnRLbtruAgByteRcved:AVERAGE \
 DEF:lost={rrd3}:tnRLbtruAgLost:AVERAGE \
 LINE2:datagrams#0000ff:"Messages " \
 GPRINT:datagrams:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:datagrams:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:datagrams:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" \
 LINE2:lost#A00000:"Lost     " \
 GPRINT:lost:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:lost:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:lost:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-ru.naks.name=29West LBT-RU Aggregate NAKs
report.29west.receiver.lbt-ru.naks.columns=tnRLbtruAgNaksSent,tnRLbtruAgNkPcktSnt
report.29west.receiver.lbt-ru.naks.msgs.type=nodeSnmp
report.29west.receiver.lbt-ru.naks.command=--title="29West LBT-RU Aggregate NAKs" \
 DEF:naks={rrd1}:tnRLbtruAgNaksSent:AVERAGE \
 DEF:packets={rrd2}:tnRLbtruAgNkPcktSnt:AVERAGE \
 LINE2:naks#0000ff:"Naks " \
 GPRINT:naks:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:naks:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:naks:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:packets#000000:"Packets     " \
 GPRINT:packets:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:packets:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:packets:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-ru.ncfs.name=29West LBT-RU Aggregate NCFs
report.29west.receiver.lbt-ru.ncfs.columns=tnRLbtruAgNcfIgnred,tnRLbtruAgNcfShed,tnRLbtruAgNcfRxDlay,tnRLbtruAgNcfUnknwn
report.29west.receiver.lbt-ru.ncfs.msgs.type=nodeSnmp
report.29west.receiver.lbt-ru.ncfs.command=--title="29West LBT-RU Aggregate NCFs" \
 DEF:ignored={rrd1}:tnRLbtruAgNcfIgnred:AVERAGE \
 DEF:shed={rrd2}:tnRLbtruAgNcfShed:AVERAGE \
 DEF:retransmit={rrd3}:tnRLbtruAgNcfRxDlay:AVERAGE \
 DEF:unknown={rrd4}:tnRLbtruAgNcfUnknwn:AVERAGE \
 LINE2:ignored#0000ff:"Ignored " \
 GPRINT:ignored:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:ignored:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:ignored:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:shed#00ff00:"Shed " \
 GPRINT:shed:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:shed:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:shed:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:retransmit#ff0000:"Retransmit " \
 GPRINT:retransmit:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:retransmit:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:retransmit:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:unknown#000000:"Packets     " \
 GPRINT:unknown:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:unknown:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:unknown:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-ru.nakrepair.name=29West LBT-RU NAK Repair Time
report.29west.receiver.lbt-ru.nakrepair.columns=tnRLbtruAgNkStmMnMn,tnRLbtruAgNkStmMnMx,tnRLbtruAgNkStmMMn,tnRLbtruAgNkStmMMx,tnRLbtruAgNkStmMxMn,tnRLbtruAgNkStmMxMx
report.29west.receiver.lbt-ru.nakrepair.msgs.type=nodeSnmp
report.29west.receiver.lbt-ru.nakrepair.command=--title="29West LBT-RU NAK Repair Time" \
 DEF:minmin={rrd1}:tnRLbtruAgNkStmMnMn:AVERAGE \
 DEF:maxmin={rrd2}:tnRLbtruAgNkStmMnMx:AVERAGE \
 DEF:minmean={rrd3}:tnRLbtruAgNkStmMMn:AVERAGE \
 DEF:maxmean={rrd4}:tnRLbtruAgNkStmMMx:AVERAGE \
 DEF:minmax={rrd5}:tnRLbtruAgNkStmMxMn:AVERAGE \
 DEF:maxmax={rrd6}:tnRLbtruAgNkStmMxMx:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Repair Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Repair Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Repair Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Repair Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Repair Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Repair Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-ru.transmissions.name=29West LBT-RU Transmissions
report.29west.receiver.lbt-ru.transmissions.columns=tnRLbtruAgNakTxMnMn,tnRLbtruAgNakTxMnMx,tnRLbtruAgNkTxMenMn,tnRLbtruAgNkTxMenMx,tnRLbtruAgNakTxMxMn,tnRLbtruAgNakTxMxMx
report.29west.receiver.lbt-ru.transmissions.msgs.type=nodeSnmp
report.29west.receiver.lbt-ru.transmissions.command=--title="29West LBT-RU Transmissions" \
 DEF:minmin={rrd1}:tnRLbtruAgNakTxMnMn:AVERAGE \
 DEF:maxmin={rrd2}:tnRLbtruAgNakTxMnMx:AVERAGE \
 DEF:minmean={rrd3}:tnRLbtruAgNkTxMenMn:AVERAGE \
 DEF:maxmean={rrd4}:tnRLbtruAgNkTxMenMx:AVERAGE \
 DEF:minmax={rrd5}:tnRLbtruAgNakTxMxMn:AVERAGE \
 DEF:maxmax={rrd6}:tnRLbtruAgNakTxMxMx:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Transmissions " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Transmissions " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Transmissions" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Transmissions" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Transmissions " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Transmissions " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-ru.dataerrors.name=29West LBT-RU Receiver Datagram Errors
report.29west.receiver.lbt-ru.dataerrors.columns=tnRLbtruAgDupData,tnRLbtruAgUnrcvdTxw,tnRLbtruAgUnrcvdTmo
report.29west.receiver.lbt-ru.dataerrors.type=nodeSnmp
report.29west.receiver.lbt-ru.dataerrors.command=--title="29West LBT-RU Receiver Datagram Errors" \
 DEF:duplicate={rrd1}:tnRLbtruAgDupData:AVERAGE \
 DEF:winadvance={rrd2}:tnRLbtruAgUnrcvdTxw:AVERAGE \
 DEF:NAKexpire={rrd3}:tnRLbtruAgUnrcvdTmo:AVERAGE \
 LINE2:duplicate#0000ff:"Duplicates " \
 GPRINT:duplicate:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:duplicate:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:duplicate:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:winadvance#000000:"Window Adv" \
 GPRINT:winadvance:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:winadvance:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:winadvance:MAX:"Max  \\: %8.2lf %s" \
 LINE2:NAKexpire#A00000:"NAK Expire " \
 GPRINT:NAKexpire:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:NAKexpire:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:NAKexpire:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-ru.lbmtransport.name=29West LBT-RU LBM Transport
report.29west.receiver.lbt-ru.lbmtransport.columns=tnRLbtruAgLbmMsgRvd,tnRLbtruAgLbmMsgNTR,tnRLbtruAgLbmReqRcv
report.29west.receiver.lbt-ru.lbmtransport.type=nodeSnmp
report.29west.receiver.lbt-ru.lbmtransport.command=--title="29West LBT-RU LBM Transport" \
 DEF:messages={rrd1}:tnRLbtruAgLbmMsgRvd:AVERAGE \
 DEF:notopic={rrd2}:tnRLbtruAgLbmMsgNTR:AVERAGE \
 DEF:requests={rrd3}:tnRLbtruAgLbmReqRcv:AVERAGE \
 LINE2:messages#0000ff:"Messages " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:notopic#000000:"No Topic" \
 GPRINT:notopic:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:notopic:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:notopic:MAX:"Max  \\: %8.2lf %s" \
 LINE2:requests#A00000:"Requests " \
 GPRINT:requests:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:requests:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:requests:MAX:"Max  \\: %8.2lf %s" 

report.29west.receiver.lbt-ru.dropdata.name=29West LBT-RU Dropped Datagrams
report.29west.receiver.lbt-ru.dropdata.columns=tnRLbtruAgDgmDrpSze,tnRLbtruAgDgmDrpTyp,tnRLbtruAgDgmDrpVer,tnRLbtruAgDgmDrpHdr,tnRLbtruAgDgmDrpSid,tnRLbtruAgDgmDrpOth
report.29west.receiver.lbt-ru.dropdata.msgs.type=nodeSnmp
report.29west.receiver.lbt-ru.dropdata.command=--title="29West LBT-RU Dropped Datagrams" \
 DEF:size={rrd1}:tnRLbtruAgDgmDrpSze:AVERAGE \
 DEF:type={rrd2}:tnRLbtruAgDgmDrpTyp:AVERAGE \
 DEF:version={rrd3}:tnRLbtruAgDgmDrpVer:AVERAGE \
 DEF:header={rrd4}:tnRLbtruAgDgmDrpHdr:AVERAGE \
 DEF:sid={rrd5}:tnRLbtruAgDgmDrpSid:AVERAGE \
 DEF:other={rrd6}:tnRLbtruAgDgmDrpOth:AVERAGE \
 LINE2:size#0000A0:"Bad Size " \
 GPRINT:size:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:size:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:size:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:type#0000ff:"Bad Type " \
 GPRINT:type:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:type:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:type:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:version#00a000:"Bad Version" \
 GPRINT:version:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:version:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:version:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:sid#ffff00:"Bad SID " \
 GPRINT:sid:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:sid:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:sid:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:header#00ff00:"Bad Header " \
 GPRINT:header:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:header:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:header:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:other#ff0000:"Other " \
 GPRINT:other:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:other:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:other:MAX:"Max  \\: %8.2lf %s\\n" 

report.29west.tcp.receiver.clients.name=29West TCP Bytes Received
report.29west.tcp.receiver.clients.columns=tnwRTcpAgBytesRcv
report.29west.tcp.receiver.clients.type=nodeSnmp
report.29west.tcp.receiver.clients.command=--title="29West TCP Bytes Received" \
 DEF:bytes={rrd1}:tnwRTcpAgBytesRcv:AVERAGE \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" 

report.29west.tcp.receiver.buffered.name=29West TCP Messages Received
report.29west.tcp.receiver.buffered.columns=tnwRTcpAgLbmMsgRcv,tnwRTcpAgLbmMsgNTR
report.29west.tcp.receiver.buffered.type=nodeSnmp
report.29west.tcp.receiver.buffered.command=--title="29West TCP Messages Received" \
 DEF:messages={rrd1}:tnwRTcpAgLbmMsgRcv:AVERAGE \
 DEF:notopic={rrd2}:tnwRTcpAgLbmMsgNTR:AVERAGE \
 LINE2:messages#000000:"Messages " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" \
 LINE2:notopic#000000:"No Topic  " \
 GPRINT:notopic:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:notopic:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:notopic:MAX:"Max  \\: %8.2lf %s" 

report.29west.tcp.receiver.requests.name=29West TCP Requests Received
report.29west.tcp.receiver.requests.columns=tnwRTcpAgLbmReqRcv
report.29west.tcp.receiver.requests.type=nodeSnmp
report.29west.tcp.receiver.requests.command=--title="29West TCP Requests Received" \
 DEF:requests={rrd1}:tnwRTcpAgLbmReqRcv:AVERAGE \
 LINE2:requests#000000:"Requests  " \
 GPRINT:requests:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:requests:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:requests:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbtipc.receiver.datagrams.name=29West LBT-IPC Datagrams Received
report.29west.lbtipc.receiver.datagrams.columns=tnwRLbtipcAgMsgsRcv
report.29west.lbtipc.receiver.datagrams.type=nodeSnmp
report.29west.lbtipc.receiver.datagrams.command=--title="29West LBT-IPC Datagrams Received" \
 DEF:datagrams={rrd1}:tnwRLbtipcAgMsgsRcv:AVERAGE \
 LINE2:datagrams#000000:"Datagrams     " \
 GPRINT:datagrams:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:datagrams:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:datagrams:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbtipc.receiver.bytes.name=29West LBT-IPC Bytes Received
report.29west.lbtipc.receiver.bytes.columns=tnwRLbtipcAgByteRcv
report.29west.lbtipc.receiver.bytes.type=nodeSnmp
report.29west.lbtipc.receiver.bytes.command=--title="29West LBT-IPC Bytes Received" \
 DEF:bytes={rrd1}:tnwRLbtipcAgByteRcv:AVERAGE \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbtipc.receiver.messages.name=29West LBT-IPC Messages Received
report.29west.lbtipc.receiver.messages.columns=tnwRLbtipcAgLbmMRcv,tnwRLbtipcAgLbmMNTR
report.29west.lbtipc.receiver.messages.type=nodeSnmp
report.29west.lbtipc.receiver.messages.command=--title="29West LBT-IPC Messages Received" \
 DEF:messages={rrd1}:tnwRLbtipcAgLbmMRcv:AVERAGE \
 DEF:notopic={rrd2}:tnwRLbtipcAgLbmMNTR:AVERAGE \
 LINE2:messages#000000:"Messages " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" \
 LINE2:notopic#000000:"No Topic  " \
 GPRINT:notopic:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:notopic:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:notopic:MAX:"Max  \\: %8.2lf %s" 

report.29west.lbtipc.receiver.requests.name=29West LBT-IPC Requests Received
report.29west.lbtipc.receiver.requests.columns=tnwRLbtipcAgLbmReqR
report.29west.lbtipc.receiver.requests.type=nodeSnmp
report.29west.lbtipc.receiver.requests.command=--title="29West LBT-IPC Requests Received" \
 DEF:requests={rrd1}:tnwRLbtipcAgLbmReqR:AVERAGE \
 LINE2:requests#000000:"Requests  " \
 GPRINT:requests:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:requests:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:requests:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.data.current.name=29West Data Message Events Currently Enqueued
report.29west.eventqueue.data.current.columns=tnwEQADataMsgs
report.29west.eventqueue.data.current.type=nodeSnmp
report.29west.eventqueue.data.current.command=--title="29West Data Message Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQADataMsgs:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.data.total.name=29West Data Message Events Total
report.29west.eventqueue.data.total.columns=tnwEQADataMsgsTot
report.29west.eventqueue.data.total.type=nodeSnmp
report.29west.eventqueue.data.total.command=--title="29West Data Message Events Total" \
 DEF:messages={rrd1}:tnwEQADataMsgsTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.data.ranges.name=29West Data Message Ranges
report.29west.eventqueue.data.ranges.columns=tnwEQADataMsgMinMin,tnwEQADataMsgMinMax,tnwEQADataMsgMenMin,tnwEQADataMsgMenMax,tnwEQADataMsgMaxMin,tnwEQADataMsgMaxMax
report.29west.eventqueue.data.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.data.ranges.command=--title="29West Data Message Ranges" \
 DEF:minmin={rrd1}:tnwEQADataMsgMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQADataMsgMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQADataMsgMenMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQADataMsgMenMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQADataMsgMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQADataMsgMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.response.current.name=29West Response Message Events Currently Enqueued
report.29west.eventqueue.response.current.columns=tnwEQARespMsgs
report.29west.eventqueue.response.current.type=nodeSnmp
report.29west.eventqueue.response.current.command=--title="29West Response Message Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQARespMsgs:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.response.total.name=29West Response Message Events Total
report.29west.eventqueue.response.total.columns=tnwEQARespMsgsTot
report.29west.eventqueue.response.total.type=nodeSnmp
report.29west.eventqueue.response.total.command=--title="29West Response Message Events Total" \
 DEF:messages={rrd1}:tnwEQARespMsgsTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.response.ranges.name=29West Response Message Ranges
report.29west.eventqueue.response.ranges.columns=tnwEQARespMsgMinMin,tnwEQARespMsgMinMax,tnwEQARespMsgMenMin,tnwEQARespMsgMenMax,tnwEQARespMsgMaxMin,tnwEQARespMsgMaxMax
report.29west.eventqueue.response.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.response.ranges.command=--title="29West Response Message Ranges" \
 DEF:minmin={rrd1}:tnwEQARespMsgMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQARespMsgMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQARespMsgMenMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQARespMsgMenMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQARespMsgMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQARespMsgMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.topicless.current.name=29West Topicless Immediate Message Events Currently Enqueued
report.29west.eventqueue.topicless.current.columns=tnwEQATlImMsgs
report.29west.eventqueue.topicless.current.type=nodeSnmp
report.29west.eventqueue.topicless.current.command=--title="29West Topicless Immediate Message Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQATlImMsgs:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.topicless.total.name=29West Topicless Immediate Message Events Total
report.29west.eventqueue.topicless.total.columns=tnwEQATlImMsgsTot
report.29west.eventqueue.topicless.total.type=nodeSnmp
report.29west.eventqueue.topicless.total.command=--title="29West Topicless Immediate Message Events Total" \
 DEF:messages={rrd1}:tnwEQATlImMsgsTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.topicless.ranges.name=29West Topicless Immediate Message Ranges
report.29west.eventqueue.topicless.ranges.columns=tnwEQATlImMsgMinMin,tnwEQATlImMsgMinMax,tnwEQATlImMsgMenMin,tnwEQATlImMsgMenMax,tnwEQATlImMsgMaxMin,tnwEQATlImMsgMaxMax
report.29west.eventqueue.topicless.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.topicless.ranges.command=--title="29West Topicless Immediate Message Ranges" \
 DEF:minmin={rrd1}:tnwEQATlImMsgMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQATlImMsgMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQATlImMsgMenMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQATlImMsgMenMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQATlImMsgMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQATlImMsgMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.wildcard.current.name=29West Wildcard Receiver Message Events Currently Enqueued
report.29west.eventqueue.wildcard.current.columns=tnwEQAWrcvMsgs
report.29west.eventqueue.wildcard.current.type=nodeSnmp
report.29west.eventqueue.wildcard.current.command=--title="29West Wildcard Receiver Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQAWrcvMsgs:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.wildcard.total.name=29West Wildcard Receiver Message Events Total
report.29west.eventqueue.wildcard.total.columns=tnwEQAWrcvMsgTot
report.29west.eventqueue.wildcard.total.type=nodeSnmp
report.29west.eventqueue.wildcard.total.command=--title="29West Wildcard Receiver Events Total" \
 DEF:messages={rrd1}:tnwEQAWrcvMsgTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.wildcard.ranges.name=29West Wildcard Receiver Message Ranges
report.29west.eventqueue.wildcard.ranges.columns=tnwEQAWrcvMsgMinMin,tnwEQAWrcvMsgMinMax,tnwEQAWrcvMsgMenMin,tnwEQAWrcvMsgMenMax,tnwEQAWrcvMsgMaxMin,tnwEQAWrcvMsgMaxMax
report.29west.eventqueue.wildcard.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.wildcard.ranges.command=--title="29West Wildcard Receiver Ranges" \
 DEF:minmin={rrd1}:tnwEQAWrcvMsgMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQAWrcvMsgMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQAWrcvMsgMenMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQAWrcvMsgMenMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQAWrcvMsgMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQAWrcvMsgMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.io.current.name=29West I/O Events Currently Enqueued
report.29west.eventqueue.io.current.columns=tnwEQAIoEvents
report.29west.eventqueue.io.current.type=nodeSnmp
report.29west.eventqueue.io.current.command=--title="29West I/O Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQAIoEvents:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.io.total.name=29West I/O Message Events Total
report.29west.eventqueue.io.total.columns=tnwEQAIoEventsTot
report.29west.eventqueue.io.total.type=nodeSnmp
report.29west.eventqueue.io.total.command=--title="29West I/O Events Total" \
 DEF:messages={rrd1}:tnwEQAIoEventsTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.io.ranges.name=29West I/O Message Ranges
report.29west.eventqueue.io.ranges.columns=tnwEQAIoEvtsMinMin,tnwEQAIoEvtsMinMax,tnwEQAIoEvtsMeanMin,tnwEQAIoEvtsMeanMax,tnwEQAIoEvtsMaxMin,tnwEQAIoEvtsMaxMax
report.29west.eventqueue.io.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.io.ranges.command=--title="29West I/O Ranges" \
 DEF:minmin={rrd1}:tnwEQAIoEvtsMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQAIoEvtsMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQAIoEvtsMeanMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQAIoEvtsMeanMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQAIoEvtsMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQAIoEvtsMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.timer.current.name=29West Timer Events Currently Enqueued
report.29west.eventqueue.timer.current.columns=tnwEQATmrEvents
report.29west.eventqueue.timer.current.type=nodeSnmp
report.29west.eventqueue.timer.current.command=--title="29West Timer Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQATmrEvents:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.timer.total.name=29West Timer Message Events Total
report.29west.eventqueue.timer.total.columns=tnwEQATmrEventsTot
report.29west.eventqueue.timer.total.type=nodeSnmp
report.29west.eventqueue.timer.total.command=--title="29West Timer Events Total" \
 DEF:messages={rrd1}:tnwEQATmrEventsTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.timer.ranges.name=29West Timer Message Ranges
report.29west.eventqueue.timer.ranges.columns=tnwEQATmrEvtsMinMin,tnwEQATmrEvtsMinMax,tnwEQATmrEvtsMenMin,tnwEQATmrEvtsMenMax,tnwEQATmrEvtsMaxMin,tnwEQATmrEvtsMaxMax
report.29west.eventqueue.timer.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.timer.ranges.command=--title="29West Timer Ranges" \
 DEF:minmin={rrd1}:tnwEQATmrEvtsMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQATmrEvtsMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQATmrEvtsMenMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQATmrEvtsMenMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQATmrEvtsMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQATmrEvtsMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.source.current.name=29West Source Events Currently Enqueued
report.29west.eventqueue.source.current.columns=tnwEQASrcEvts
report.29west.eventqueue.source.current.type=nodeSnmp
report.29west.eventqueue.source.current.command=--title="29West Source Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQASrcEvts:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.source.total.name=29West Source Message Events Total
report.29west.eventqueue.source.total.columns=tnwEQASrcEvtsTot
report.29west.eventqueue.source.total.type=nodeSnmp
report.29west.eventqueue.source.total.command=--title="29West Source Events Total" \
 DEF:messages={rrd1}:tnwEQASrcEvtsTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.source.ranges.name=29West Source Message Ranges
report.29west.eventqueue.source.ranges.columns=tnwEQASrcEvtsMinMin,tnwEQASrcEvtsMinMax,tnwEQASrcEvtsMenMin,tnwEQASrcEvtsMenMax,tnwEQASrcEvtsMaxMin,tnwEQASrcEvtsMaxMax
report.29west.eventqueue.source.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.source.ranges.command=--title="29West Source Ranges" \
 DEF:minmin={rrd1}:tnwEQASrcEvtsMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQASrcEvtsMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQASrcEvtsMenMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQASrcEvtsMenMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQASrcEvtsMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQASrcEvtsMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.unblock.current.name=29West Unblock Events Currently Enqueued
report.29west.eventqueue.unblock.current.columns=tnwEQAUnblockEvents
report.29west.eventqueue.unblock.current.type=nodeSnmp
report.29west.eventqueue.unblock.current.command=--title="29West Unblock Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQAUnblockEvents:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.unblock.total.name=29West Unblock Message Events Total
report.29west.eventqueue.unblock.total.columns=tnwEQAUnblockEvtTot
report.29west.eventqueue.unblock.total.type=nodeSnmp
report.29west.eventqueue.unblock.total.command=--title="29West Unblock Events Total" \
 DEF:messages={rrd1}:tnwEQAUnblockEvtTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.cancel.current.name=29West Cancel Events Currently Enqueued
report.29west.eventqueue.cancel.current.columns=tnwEQACnclEvents
report.29west.eventqueue.cancel.current.type=nodeSnmp
report.29west.eventqueue.cancel.current.command=--title="29West Cancel Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQACnclEvents:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.cancel.total.name=29West Cancel Message Events Total
report.29west.eventqueue.cancel.total.columns=tnwEQACnclEvtTot
report.29west.eventqueue.cancel.total.type=nodeSnmp
report.29west.eventqueue.cancel.total.command=--title="29West Cancel Events Total" \
 DEF:messages={rrd1}:tnwEQACnclEvtTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.cancel.ranges.name=29West Cancel Message Ranges
report.29west.eventqueue.cancel.ranges.columns=tnwEQACnclEvtMinMin,tnwEQACnclEvtMinMax,tnwEQACnclEvtMenMin,tnwEQACnclEvtMenMax,tnwEQACnclEvtMaxMin,tnwEQACnclEvtMaxMax
report.29west.eventqueue.cancel.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.cancel.ranges.command=--title="29West Cancel Ranges" \
 DEF:minmin={rrd1}:tnwEQACnclEvtMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQACnclEvtMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQACnclEvtMenMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQACnclEvtMenMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQACnclEvtMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQACnclEvtMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.context.current.name=29West Context Source Events Currently Enqueued
report.29west.eventqueue.context.current.columns=tnwEQACxtSEvents
report.29west.eventqueue.context.current.type=nodeSnmp
report.29west.eventqueue.context.current.command=--title="29West Context Source Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQACxtSEvents:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.context.total.name=29West Context Source Message Events Total
report.29west.eventqueue.context.total.columns=tnwEQACxtSEvtTot
report.29west.eventqueue.context.total.type=nodeSnmp
report.29west.eventqueue.context.total.command=--title="29West Context Source Events Total" \
 DEF:messages={rrd1}:tnwEQACxtSEvtTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.context.ranges.name=29West Context Source Message Ranges
report.29west.eventqueue.context.ranges.columns=tnwEQACxtSEvtMinMin,tnwEQACxtSEvtMinMax,tnwEQACxtSEvtMenMin,tnwEQACxtSEvtMenMax,tnwEQACxtSEvtMaxMin,tnwEQACxtSEvtMaxMax
report.29west.eventqueue.context.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.context.ranges.command=--title="29West Context Source Ranges" \
 DEF:minmin={rrd1}:tnwEQACxtSEvtMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQACxtSEvtMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQACxtSEvtMenMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQACxtSEvtMenMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQACxtSEvtMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQACxtSEvtMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.events.current.name=29West Events Currently Enqueued
report.29west.eventqueue.events.current.columns=tnwEQAEvents
report.29west.eventqueue.events.current.type=nodeSnmp
report.29west.eventqueue.events.current.command=--title="29West Events Currently Enqueued" \
 DEF:messages={rrd1}:tnwEQAEvents:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.events.total.name=29West Message Events Total
report.29west.eventqueue.events.total.columns=tnwEQAEventsTot
report.29west.eventqueue.events.total.type=nodeSnmp
report.29west.eventqueue.events.total.command=--title="29West Events Total" \
 DEF:messages={rrd1}:tnwEQAEventsTot:AVERAGE \
 LINE2:messages#000000:"Messages  " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s" 

report.29west.eventqueue.events.ranges.name=29West Message Ranges
report.29west.eventqueue.events.ranges.columns=tnwEQAAgeMinMin,tnwEQAAgeMinMax,tnwEQAAgeMeanMin,tnwEQAAgeMeanMax,tnwEQAAgeMaxMin,tnwEQAAgeMaxMax
report.29west.eventqueue.events.ranges.msgs.type=nodeSnmp
report.29west.eventqueue.events.ranges.command=--title="29West Event Ranges" \
 DEF:minmin={rrd1}:tnwEQAAgeMinMin:AVERAGE \
 DEF:maxmin={rrd2}:tnwEQAAgeMinMax:AVERAGE \
 DEF:minmean={rrd3}:tnwEQAAgeMeanMin:AVERAGE \
 DEF:maxmean={rrd4}:tnwEQAAgeMeanMax:AVERAGE \
 DEF:minmax={rrd5}:tnwEQAAgeMaxMin:AVERAGE \
 DEF:maxmax={rrd6}:tnwEQAAgeMaxMax:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Event Svc Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Event Svc Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Event Svc Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Event Svc Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Event Svc Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Event Svc Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.topicres.datagrams.name=29West Topic Resolution Datagrams
report.29west.topicres.datagrams.columns=tnwCxtAggTrDgmsSent,tnwCxtAggTrDgmsRcvd
report.29west.topicres.datagrams.type=nodeSnmp
report.29west.topicres.datagrams.command=--title="29West Topic Resolution Datagrams" \
 DEF:sent={rrd1}:tnwCxtAggTrDgmsSent:AVERAGE \
 DEF:received={rrd2}:tnwCxtAggTrDgmsRcvd:AVERAGE \
 LINE2:sent#0000a0:"Sent  " \
 GPRINT:sent:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:sent:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:sent:MAX:"Max  \\: %8.2lf %s" \
 LINE2:received#00a000:"Received " \
 GPRINT:received:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:received:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:received:MAX:"Max  \\: %8.2lf %s" 

report.29west.topicres.bytes.name=29West Topic Resolution Bytes
report.29west.topicres.bytes.columns=tnwCxtAggTrByteSent,tnwCxtAggTrByteRcvd
report.29west.topicres.bytes.type=nodeSnmp
report.29west.topicres.bytes.command=--title="29West Topic Resolution Bytes" \
 DEF:sent={rrd1}:tnwCxtAggTrByteSent:AVERAGE \
 DEF:received={rrd2}:tnwCxtAggTrByteRcvd:AVERAGE \
 LINE2:sent#0000a0:"Sent  " \
 GPRINT:sent:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:sent:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:sent:MAX:"Max  \\: %8.2lf %s" \
 LINE2:received#00a000:"Received " \
 GPRINT:received:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:received:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:received:MAX:"Max  \\: %8.2lf %s" 

report.29west.topicres.dropped.name=29West Topic Resolution Datagrams Dropped
report.29west.topicres.dropped.columns=tnwCxtAggTrDgmsDrpV,tnwCxtAggTrDgmsDrpT,tnwCxtAggTrDgmsDrpM
report.29west.topicres.dropped.type=nodeSnmp
report.29west.topicres.dropped.command=--title="29West Topic Resolution Datagrams Dropped" \
 DEF:version={rrd1}:tnwCxtAggTrDgmsDrpV:AVERAGE \
 DEF:type={rrd2}:tnwCxtAggTrDgmsDrpT:AVERAGE \
 DEF:malform={rrd3}:tnwCxtAggTrDgmsDrpM:AVERAGE \
 LINE2:version#a00000:"Bad Ver.  " \
 GPRINT:version:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:version:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:version:MAX:"Max  \\: %8.2lf %s" \
 LINE2:type#0000a0:"Bad Type  " \
 GPRINT:type:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:type:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:type:MAX:"Max  \\: %8.2lf %s" \
 LINE2:mailform#00a000:"Malformed " \
 GPRINT:malform:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:malform:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:malform:MAX:"Max  \\: %8.2lf %s" 

report.29west.topicres.failed.name=29West Topic Resolution Datagram Failures
report.29west.topicres.failed.columns=tnwCxtAggTrDgmsSndF
report.29west.topicres.failed.type=nodeSnmp
report.29west.topicres.failed.command=--title="29West Topic Datagram Failures" \
 DEF:fail={rrd1}:ttnwCxtAggTrDgmsSndFnwCxtAggTrByteSent:AVERAGE \
 LINE2:fail#00a000:"Failures " \
 GPRINT:fail:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:fail:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:fail:MAX:"Max  \\: %8.2lf %s" 

report.29west.topicres.map.name=29West Topic Resolution Map
report.29west.topicres.map.columns=tnwCxtAggTrSrcTopic,tnwCxtAggTrRcvTopic,tnwCxtAggTrRcvUnrTp
report.29west.topicres.map.type=nodeSnmp
report.29west.topicres.map.command=--title="29West Topic Resolution Map" \
 DEF:source={rrd1}:tnwCxtAggTrSrcTopic:AVERAGE \
 DEF:receive={rrd2}:tnwCxtAggTrRcvTopic:AVERAGE \
 DEF:unres={rrd3}:tnwCxtAggTrRcvUnrTp:AVERAGE \
 LINE2:source#a00000:"Source  " \
 GPRINT:source:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:source:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:source:MAX:"Max  \\: %8.2lf %s" \
 LINE2:receive#0000a0:"Received  " \
 GPRINT:receive:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:receive:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:receive:MAX:"Max  \\: %8.2lf %s" \
 LINE2:unres#00a000:"Unresolved " \
 GPRINT:unres:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:unres:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:unres:MAX:"Max  \\: %8.2lf %s" 

report.29west.topicres.notrans.name=29West No Transport
report.29west.topicres.notrans.columns=tnwCxtAggLbtrmUnkMR,tnwCxtAggLbtruUnkMR
report.29west.topicres.notrans.type=nodeSnmp
report.29west.topicres.notrans.command=--title="29West No Transport" \
 DEF:lbtrm={rrd1}:tnwCxtAggLbtrmUnkMR:AVERAGE \
 DEF:lbtru={rrd2}:tnwCxtAggLbtruUnkMR:AVERAGE \
 LINE2:lbtrm#0000a0:"LBT-RM  " \
 GPRINT:lbtrm:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:lbtrm:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:lbtrm:MAX:"Max  \\: %8.2lf %s" \
 LINE2:lbtru#00a000:"LBT-RU " \
 GPRINT:lbtru:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:lbtru:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:lbtru:MAX:"Max  \\: %8.2lf %s" 

report.29west.topicres.blocked.name=29West Topic Blocked Datagrams
report.29west.topicres.blocked.columns=tnwCxtAggSendBlockd,tnwCxtAggSndWldBlk,tnwCxtAggRespBlked,tnwCxtAggRespWldBlk
report.29west.topicres.blocked.type=nodeSnmp
report.29west.topicres.blocked.command=--title="29West Topic Blocked Datagrams" \
 DEF:sendblk={rrd1}:tnwCxtAggSendBlockd:AVERAGE \
 DEF:sendewb={rrd2}:tnwCxtAggSndWldBlk:AVERAGE \
 DEF:responseblk={rrd3}:tnwCxtAggRespBlked:AVERAGE \
 DEF:responseewb={rrd4}:tnwCxtAggRespWldBlk:AVERAGE \
 LINE2:sendblk#000000:"Send Blk  " \
 GPRINT:sendblk:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:sendblk:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:sendblk:MAX:"Max  \\: %8.2lf %s" \
 LINE2:sendewb#a00000:"Send EWB  " \
 GPRINT:sendewb:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:sendewb:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:sendewb:MAX:"Max  \\: %8.2lf %s" \
 LINE2:responseblk#0000a0:"Response Blk  " \
 GPRINT:responseblk:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:responseblk:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:responseblk:MAX:"Max  \\: %8.2lf %s" \
 LINE2:responseewb#00a000:"Response EWB " \
 GPRINT:responseewb:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:responseewb:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:responseewb:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.datagrams.name=29West MIM Source Datagrams
report.29west.mim.datagrams.columns=tnwCxtMSLbtrmAgDS,tnwCxtMSLbtrmAgRS
report.29west.mim.datagrams.type=nodeSnmp
report.29west.mim.datagrams.command=--title="29West MIM Source Datagrams" \
 DEF:sent={rrd1}:tnwCxtMSLbtrmAgDS:AVERAGE \
 DEF:receive={rrd2}:tnwCxtMSLbtrmAgRS:AVERAGE \
 LINE2:sent#0000a0:"Sent  " \
 GPRINT:sent:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:sent:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:sent:MAX:"Max  \\: %8.2lf %s" \
 LINE2:receive#00a000:"Retrans " \
 GPRINT:receive:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:receive:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:receive:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.bytes.name=29West MIM Source Datagrams
report.29west.mim.bytes.columns=tnwCxtMSLbtrmAgBS,tnwCxtMSLbtrmAgRBS
report.29west.mim.bytes.type=nodeSnmp
report.29west.mim.bytes.command=--title="29West MIM Source Datagrams" \
 DEF:sent={rrd1}:tnwCxtMSLbtrmAgDS:AVERAGE \
 DEF:receive={rrd2}:tnwCxtMSLbtrmAgRS:AVERAGE \
 LINE2:sent#0000a0:"Sent  " \
 GPRINT:sent:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:sent:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:sent:MAX:"Max  \\: %8.2lf %s" \
 LINE2:receive#00a000:"Retrans " \
 GPRINT:receive:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:receive:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:receive:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.naks.name=29West MIM Source NAKs
report.29west.mim.naks.columns=tnwCxtMSLbtrmAgNPR,tnwCxtMSLbtrmAgNR,tnwCxtMSLbtrmAgNI,tnwCxtMSLbtrmAgNS,tnwCxtMSLbtrmAgNRDI
report.29west.mim.naks.type=nodeSnmp
report.29west.mim.naks.command=--title="29West MIM Source NAKs" \
 DEF:packets={rrd1}:tnwCxtMSLbtrmAgNPR:AVERAGE \
 DEF:individ={rrd2}:tnwCxtMSLbtrmAgNR:AVERAGE \
 DEF:retrans={rrd3}:tnwCxtMSLbtrmAgNI:AVERAGE \
 DEF:queue={rrd4}:tnwCxtMSLbtrmAgNS:AVERAGE \
 DEF:ratecont={rrd5}:tnwCxtMSLbtrmAgNRDI:AVERAGE \
 LINE2:packets#00a0a0:"Packets  " \
 GPRINT:packets:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:packets:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:packets:MAX:"Max  \\: %8.2lf %s" \
 LINE2:individ#000000:"Individual " \
 GPRINT:individ:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:individ:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:individ:MAX:"Max  \\: %8.2lf %s" \
 LINE2:retrans#a00000:"Retrans " \
 GPRINT:retrans:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:retrans:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:retrans:MAX:"Max  \\: %8.2lf %s" \
 LINE2:queue#0000a0:"Queue Full " \
 GPRINT:queue:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:queue:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:queue:MAX:"Max  \\: %8.2lf %s" \
 LINE2:ratecont#00a000:"Rate Contr. " \
 GPRINT:ratecont:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:ratecont:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:ratecont:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.lbt-rm.msgs.name=29West MIM LBT-RM Receiver Datagrams
report.29west.mim.lbt-rm.msgs.columns=tnwCxtMRLbtrmAgDR,tnwCxtMRLbtrmAgBR,tnwCxtMRLbtrmAgLost
report.29west.mim.lbt-rm.msgs.type=nodeSnmp
report.29west.mim.lbt-rm.msgs.command=--title="29West MIM LBT-RM Receiver Datagrams" \
 DEF:datagrams={rrd1}:tnwCxtMRLbtrmAgDR:AVERAGE \
 DEF:bytes={rrd2}:tnwCxtMRLbtrmAgBR:AVERAGE \
 DEF:lost={rrd3}:tnwCxtMRLbtrmAgLost:AVERAGE \
 LINE2:datagrams#0000ff:"Messages " \
 GPRINT:datagrams:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:datagrams:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:datagrams:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:bytes#000000:"Bytes     " \
 GPRINT:bytes:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:bytes:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:bytes:MAX:"Max  \\: %8.2lf %s" \
 LINE2:lost#A00000:"Lost     " \
 GPRINT:lost:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:lost:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:lost:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.lbt-rm.naks.name=29West MIM LBT-RM Aggregate NAKs
report.29west.mim.lbt-rm.naks.columns=tnwCxtMRLbtrmAgNI,tnwCxtMRLbtrmAgNS
report.29west.mim.lbt-rm.naks.msgs.type=nodeSnmp
report.29west.mim.lbt-rm.naks.command=--title="29West MIM LBT-RM Aggregate NAKs" \
 DEF:naks={rrd1}:tnwCxtMRLbtrmAgNI:AVERAGE \
 DEF:packets={rrd2}:tnwCxtMRLbtrmAgNS:AVERAGE \
 LINE2:naks#0000ff:"Naks " \
 GPRINT:naks:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:naks:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:naks:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:packets#000000:"Packets     " \
 GPRINT:packets:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:packets:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:packets:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.lbt-rm.ncfs.name=29West MIM LBT-RM Aggregate NCFs
report.29west.mim.lbt-rm.ncfs.columns=tnwCxtMRLbtrmAgNI,tnwCxtMRLbtrmAgNSh,tnwCxtMRLbtrmAgNRD,tnwCxtMRLbtrmAgNUnk
report.29west.mim.lbt-rm.ncfs.msgs.type=nodeSnmp
report.29west.mim.lbt-rm.ncfs.command=--title="29West MIM LBT-RM Aggregate NCFs" \
 DEF:ignored={rrd1}:tnwCxtMRLbtrmAgNI:AVERAGE \
 DEF:shed={rrd2}:tnwCxtMRLbtrmAgNSh:AVERAGE \
 DEF:retransmit={rrd3}:tnwCxtMRLbtrmAgNRD:AVERAGE \
 DEF:unknown={rrd4}:tnwCxtMRLbtrmAgNUnk:AVERAGE \
 LINE2:ignored#0000ff:"Ignored " \
 GPRINT:ignored:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:ignored:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:ignored:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:shed#00ff00:"Shed " \
 GPRINT:shed:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:shed:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:shed:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:retransmit#ff0000:"Retransmit " \
 GPRINT:retransmit:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:retransmit:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:retransmit:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:unknown#000000:"Packets     " \
 GPRINT:unknown:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:unknown:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:unknown:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.lbt-rm.nakrepair.name=29West MIM LBT-RM NAK Repair Time
report.29west.mim.lbt-rm.nakrepair.columns=tnwCxtMRLbtrmNSMnMn,tnwCxtMRLbtrmNSMnMx,tnwCxtMRLbtrmNSMeMn,tnwCxtMRLbtrmNSMeMx,tnwCxtMRLbtrmNSMxMn,tnwCxtMRLbtrmNSMxMx
report.29west.mim.lbt-rm.nakrepair.msgs.type=nodeSnmp
report.29west.mim.lbt-rm.nakrepair.command=--title="29West MIM LBT-RM NAK Repair Time" \
 DEF:minmin={rrd1}:tnwCxtMRLbtrmNSMnMn:AVERAGE \
 DEF:maxmin={rrd2}:tnwCxtMRLbtrmNSMnMx:AVERAGE \
 DEF:minmean={rrd3}:tnwCxtMRLbtrmNSMeMn:AVERAGE \
 DEF:maxmean={rrd4}:tnwCxtMRLbtrmNSMeMx:AVERAGE \
 DEF:minmax={rrd5}:tnwCxtMRLbtrmNSMxMn:AVERAGE \
 DEF:maxmax={rrd6}:tnwCxtMRLbtrmNSMxMx:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Repair Time " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Repair Time " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Repair Time" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Repair Time" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Repair Time " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Repair Time " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.lbt-rm.transmissions.name=29West MIM LBT-RM Transmissions
report.29west.mim.lbt-rm.transmissions.columns=tnwCxtMRLbtrmNTMnMn,tnwCxtMRLbtrmNTMnMx,tnwCxtMRLbtrmNTMeMn,tnwCxtMRLbtrmNTMeMx,tnwCxtMRLbtrmNTMxMn,tnwCxtMRLbtrmNTMxMx
report.29west.mim.lbt-rm.transmissions.msgs.type=nodeSnmp
report.29west.mim.lbt-rm.transmissions.command=--title="29West MIM LBT-RM Transmissions" \
 DEF:minmin={rrd1}:tnwCxtMRLbtrmNTMnMn:AVERAGE \
 DEF:maxmin={rrd2}:tnwCxtMRLbtrmNTMnMx:AVERAGE \
 DEF:minmean={rrd3}:tnwCxtMRLbtrmNTMeMn:AVERAGE \
 DEF:maxmean={rrd4}:tnwCxtMRLbtrmNTMeMx:AVERAGE \
 DEF:minmax={rrd5}:tnwCxtMRLbtrmNTMxMn:AVERAGE \
 DEF:maxmax={rrd6}:tnwCxtMRLbtrmNTMxMx:AVERAGE \
 LINE2:minmin#0000A0:"Min Range of Min Transmissions " \
 GPRINT:minmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmin#0000ff:"Max Range of Min Transmissions " \
 GPRINT:maxmin:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmin:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmin:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmean#00a000:"Min Range of Mean Transmissions" \
 GPRINT:minmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmean#00ff00:"Max Range of Mean Transmissions" \
 GPRINT:maxmean:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmean:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmean:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:minmax#a00000:"Min Range of Max Transmissions " \
 GPRINT:minmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:minmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:minmax:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:maxmax#ff0000:"Max Range of Max Transmissions " \
 GPRINT:maxmax:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:maxmax:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:maxmax:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.lbt-rm.dataerrors.name=29West MIM LBT-RM Receiver Datagram Errors
report.29west.mim.lbt-rm.dataerrors.columns=tnwCxtMRLbtrmAgDupD,tnwCxtMRLbtrmAgUTxw,tnwCxtMRLbtrmAgUTmo
report.29west.mim.lbt-rm.dataerrors.type=nodeSnmp
report.29west.mim.lbt-rm.dataerrors.command=--title="29West MIM LBT-RM Receiver Datagram Errors" \
 DEF:duplicate={rrd1}:tnwCxtMRLbtrmAgDupD:AVERAGE \
 DEF:winadvance={rrd2}:tnwCxtMRLbtrmAgUTxw:AVERAGE \
 DEF:NAKexpire={rrd3}:tnwCxtMRLbtrmAgUTmo:AVERAGE \
 LINE2:duplicate#0000ff:"Duplicates " \
 GPRINT:duplicate:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:duplicate:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:duplicate:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:winadvance#000000:"Window Adv" \
 GPRINT:winadvance:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:winadvance:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:winadvance:MAX:"Max  \\: %8.2lf %s" \
 LINE2:NAKexpire#A00000:"NAK Expire " \
 GPRINT:NAKexpire:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:NAKexpire:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:NAKexpire:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.lbt-rm.lbmtransport.name=29West MIM LBT-RM LBM Transport
report.29west.mim.lbt-rm.lbmtransport.columns=tnwCxtMRLbtrmLbmMR,tnwCxtMRLbtrmLbmMNR,tnwCxtMRLbtrmLbmRR
report.29west.mim.lbt-rm.lbmtransport.type=nodeSnmp
report.29west.mim.lbt-rm.lbmtransport.command=--title="29West MIM LBT-RM LBM Transport" \
 DEF:messages={rrd1}:tnwCxtMRLbtrmLbmMR:AVERAGE \
 DEF:notopic={rrd2}:tnwCxtMRLbtrmLbmMNR:AVERAGE \
 DEF:requests={rrd3}:tnwCxtMRLbtrmLbmRR:AVERAGE \
 LINE2:messages#0000ff:"Messages " \
 GPRINT:messages:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:messages:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:messages:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:notopic#000000:"No Topic" \
 GPRINT:notopic:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:notopic:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:notopic:MAX:"Max  \\: %8.2lf %s" \
 LINE2:requests#A00000:"Requests " \
 GPRINT:requests:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:requests:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:requests:MAX:"Max  \\: %8.2lf %s" 

report.29west.mim.lbt-rm.dropdata.name=29West MIM LBT-RM Dropped Datagrams
report.29west.mim.lbt-rm.dropdata.columns=tnwCxtMRLbtrmAgDDS,tnwCxtMRLbtrmAgDDT,tnwCxtMRLbtrmAgDDV,tnwCxtMRLbtrmAgDDH,tnwCxtMRLbtrmAgDDO
report.29west.mim.lbt-rm.dropdata.msgs.type=nodeSnmp
report.29west.mim.lbt-rm.dropdata.command=--title="29West MIM LBT-RM Dropped Datagrams" \
 DEF:size={rrd1}:tnwCxtMRLbtrmAgDDS:AVERAGE \
 DEF:type={rrd2}:tnwCxtMRLbtrmAgDDT:AVERAGE \
 DEF:version={rrd3}:tnwCxtMRLbtrmAgDDV:AVERAGE \
 DEF:header={rrd4}:tnwCxtMRLbtrmAgDDH:AVERAGE \
 DEF:other={rrd5}:tnwCxtMRLbtrmAgDDO:AVERAGE \
 LINE2:size#0000A0:"Bad Size " \
 GPRINT:size:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:size:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:size:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:type#0000ff:"Bad Type " \
 GPRINT:type:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:type:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:type:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:version#00a000:"Bad Version" \
 GPRINT:version:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:version:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:version:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:header#00ff00:"Bad Header " \
 GPRINT:header:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:header:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:header:MAX:"Max  \\: %8.2lf %s\\n" \
 LINE2:other#ff0000:"Other " \
 GPRINT:other:AVERAGE:"Avg  \\: %8.2lf %s" \
 GPRINT:other:MIN:"Min  \\: %8.2lf %s" \
 GPRINT:other:MAX:"Max  \\: %8.2lf %s" 

There are lots of them. Remember to add them to the "reports=" line at the top of the file:

29west.lbt-rm.datagrams, 29west.lbt-rm.retrans, 29west.lbt-rm.naks, 29west.lbt-ru.datagrams, \
29west.lbt-ru.retrans, 29west.lbt-ru.naks, 29west.lbt-ru.clients, 29west.tcp.clients, \
29west.tcp.buffered, 29west.lbt-ipc.clients, 29west.lbt-ipc.msgs, 29west.receiver.lbt-rm.msgs, \
29west.receiver.lbt-rm.naks, 29west.receiver.lbt-rm.ncfs, 29west.receiver.lbt-rm.nakrepair, \
29west.receiver.lbt-rm.transmissions, 29west.receiver.lbt-rm.dataerrors, \
29west.receiver.lbt-rm.lbmtransport, 29west.receiver.lbt-rm.dropdata, 29west.receiver.lbt-ru.msgs, \
29west.receiver.lbt-ru.naks, 29west.receiver.lbt-ru.ncfs, 29west.receiver.lbt-ru.nakrepair, \
29west.receiver.lbt-ru.transmissions, 29west.receiver.lbt-ru.dataerrors, 29west.receiver.lbt-ru.lbmtransport, \
29west.receiver.lbt-ru.dropdata, 29west.tcp.receiver.clients, 29west.tcp.receiver.buffered, \
29west.tcp.receiver.requests, 29west.lbtipc.receiver.datagrams, 29west.lbtipc.receiver.bytes, \
29west.lbtipc.receiver.messages, 29west.lbtipc.receiver.requests, 29west.eventqueue.data.current, \
29west.eventqueue.data.total, 29west.eventqueue.data.ranges, 29west.eventqueue.response.current, \
29west.eventqueue.response.total, 29west.eventqueue.response.ranges, 29west.eventqueue.topicless.current, \
29west.eventqueue.topicless.total, 29west.eventqueue.topicless.ranges, 29west.eventqueue.wildcard.current, \
29west.eventqueue.wildcard.total, 29west.eventqueue.wildcard.ranges, 29west.eventqueue.io.current, \
29west.eventqueue.io.total, 29west.eventqueue.io.ranges, 29west.eventqueue.timer.current, \
29west.eventqueue.timer.total, 29west.eventqueue.timer.ranges, 29west.eventqueue.source.current, \
29west.eventqueue.source.total, 29west.eventqueue.source.ranges, 29west.eventqueue.unblock.current, \
29west.eventqueue.unblock.total, 29west.eventqueue.cancel.current, 29west.eventqueue.cancel.total, \
29west.eventqueue.cancel.ranges, 29west.eventqueue.context.current, 29west.eventqueue.context.total, \
29west.eventqueue.context.ranges, 29west.eventqueue.events.current, 29west.eventqueue.events.total, \
29west.eventqueue.events.ranges, 29west.topicres.datagrams, 29west.topicres.bytes, 29west.topicres.dropped, \
29west.topicres.failed, 29west.topicres.map, 29west.topicres.notrans, 29west.topicres.blocked, \
29west.mim.datagrams, 29west.mim.bytes, 29west.mim.naks, 29west.mim.lbt-rm.msgs, 29west.mim.lbt-rm.naks, \
29west.mim.lbt-rm.ncfs, 29west.mim.lbt-rm.nakrepair, 29west.mim.lbt-rm.transmissions, \
29west.mim.lbt-rm.dataerrors, 29west.mim.lbt-rm.lbmtransport, 29west.mim.lbt-rm.dropdata

So, if you use 29 West products, I hope this is useful.