Data query for CMCIII_PDU : Index problem

Post general support questions here that do not specifically fall into the Linux or Windows categories.

Moderators: Developers, Moderators

User avatar
BSOD2600
Cacti Moderator
Posts: 12171
Joined: Sat May 08, 2004 12:44 pm
Location: USA

Re: Data query for CMCIII_PDU : Index problem

Post by BSOD2600 »

You need to decide what pieces of data you want to collect. I assume at least Temperature.Value, right? anything else?

instead of posting images of xml files, use the

Code: Select all

 blocks... anyways I'm not going to retype it all. 
For the first cmIIIVarVAlueInt, change the OID to: .1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2 (notice the appending of the .2, which should be for the Temperature.Value per the earlier OID tree outputs).  You'll need to consult the MIB file for the conversion, but most likely can use a rrdtool CDEF to convert 2700 to 27.00 (celcius I assume). worry about this stuff after you get the data query functional ;)
moxxbiales
Posts: 41
Joined: Thu Jun 04, 2015 11:36 am
Location: France

Re: Data query for CMCIII_PDU : Index problem

Post by moxxbiales »

Hi,
Sorry for the code ; i'll past it here from now on.
I've got 20 PDU with 8 plugs each. So I want to graph all the plugs plus the total for each PDU. (180 OIDs)
Temperature would be nice too.
So I've tried this for the XML file :
##<interface>
<name>Get CMC VarTable information</name>
<description>recuperer les infos de la table Var de cmc3PDU</description>
<index_order_type>numeric</index_order_type>
<oid_index>.1.3.6.1.4.1.2606.7.4.2.2.1.11</oid_index>
<fields>
<cmcIIIVarValueInt>
<name>Index</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.11</oid>
</cmcIIIVarValueInt>
<cmcIIITemperatureValue>
<name>TemperatureValue</name>
<method>walk</method>
<source>value</source>
<direction>output</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2</oid>
</cmcIIITemperatureValue>
<cmcIIISetPtLowWarning>
<name>SetPtLowWarning</name>
<method>walk</method>
<source>value</source>
<direction>output</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.11.1.6</oid>
</cmcIIISetPtLowWarning>


</fields>
##</interface>
Nothing really changed from the last time.
I still get the one and only column in the "create graph" page. (see attachement)
I've also attached the verbose of the data query.
I'm also waiting for an answer from my Rittal dealer.
I hope I won't have to create data templates for each of the 180 + OID's !!!
Attachments
create graph
create graph
Sélection_183.jpg (78.58 KiB) Viewed 1677 times
verbose1
verbose1
Sélection_184.jpg (188 KiB) Viewed 1677 times
verbose2
verbose2
Sélection_185.jpg (143.11 KiB) Viewed 1677 times
User avatar
BSOD2600
Cacti Moderator
Posts: 12171
Joined: Sat May 08, 2004 12:44 pm
Location: USA

Re: Data query for CMCIII_PDU : Index problem

Post by BSOD2600 »

moxxbiales wrote:Nothing really changed from the last time.
I still get the one and only column in the "create graph" page. (see attachement)
yea, thats because the index still isnt correct.

for testing, try this:

Code: Select all

<name>Get CMC VarTable information</name>
<description>recuperer les infos de la table Var de cmc3PDU</description>
<index_order_type>numeric</index_order_type>
<oid_index>.1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2</oid_index>
<fields>
	<cmcIIITemperatureValueIN>
		<name>TemperatureValueIN</name>
		<method>walk</method>
		<source>value</source>
		<direction>input</direction>
		<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2</oid>
	</cmcIIITemperatureValueIN>
	<cmcIIITemperatureValue>
		<name>TemperatureValue</name>
		<method>walk</method>
		<source>value</source>
		<direction>output</direction>
		<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2</oid>
	</cmcIIITemperatureValue>
hopefully the temperature is functional. they we'll figure out a way to expand to the other fields. might need to get creative with a REGEX for the OID_INDEX... or worst case, a custom php script server script.
moxxbiales
Posts: 41
Joined: Thu Jun 04, 2015 11:36 am
Location: France

Re: Data query for CMCIII_PDU : Index problem

Post by moxxbiales »

Hi again,
I've tried the XML file shown in the example you post but I don't see any change.
I steel have the index on the "create graph" page. the column is index and there just one value, 2770 (see attachment)
this the verbose for the data query

+ Running data query [20].
+ Found type = '3' [SNMP Query].
+ Found data query XML file at '/usr/share/cacti/resource/snmp_queries/cmc3pdu_vartable.xml'
+ XML file parsed ok.
+ <oid_num_indexes> missing in XML file, 'Index Count Changed' emulated by counting oid_index entries
+ Executing SNMP walk for list of indexes @ '.1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2' Index Count: 1
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.11.1.2' value: '2770'
+ Located input field 'cmcIIITemperatureValueIN' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2'
+ Found item [cmcIIITemperatureValueIN='2770'] index: 2 [from value]
I really get lost here...
you're really helpful here anyway.
thanks
Attachments
create graph
create graph
Sélection_181.jpg (11.67 KiB) Viewed 1669 times
User avatar
BSOD2600
Cacti Moderator
Posts: 12171
Joined: Sat May 08, 2004 12:44 pm
Location: USA

Re: Data query for CMCIII_PDU : Index problem

Post by BSOD2600 »

Hmm, you didnt use the xml file I made, since the headers are different. Regardless, is 27.70 C the correct temperature?

Given how things are going, I'm inclined to just have you use the Generic OID Data template for each metric you want to collect. Much simpler for a few data points for devices with static OIDs.
moxxbiales
Posts: 41
Joined: Thu Jun 04, 2015 11:36 am
Location: France

Re: Data query for CMCIII_PDU : Index problem

Post by moxxbiales »

Hi,
Sorry for the delay but I have others stuff to work on so I neglected cacti a bit.
I used your XML file. Now the header is the same !(see attachment)
The temperature is actually the good one (now it's 30 and no longer 27, summer is here !)
So you think I can graph the temperature with that column ? I thought I needed to get a second column to be able to graph it...
The question is how can I graph my values for my PDU ?
Your last post frightened me...If I have to do simple OID queries for my 9x20 pdu... :-?
Thanks anyway, hope that doesn't take to long to you to help me
:)
Attachments
Sélection_205.jpg
Sélection_205.jpg (22.95 KiB) Viewed 1633 times
User avatar
BSOD2600
Cacti Moderator
Posts: 12171
Joined: Sat May 08, 2004 12:44 pm
Location: USA

Re: Data query for CMCIII_PDU : Index problem

Post by BSOD2600 »

moxxbiales wrote:Your last post frightened me...If I have to do simple OID queries for my 9x20 pdu... :-?
The device doesnt change the index for temperature, right? it's always going to be .1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2 across all the PDUs.

If true, then once you make the Data Template (copy the generic oid data template, update the new copy with .1.3.6.1.4.1.2606.7.4.2.2.1.11.1.2 near the bottom), assign a graph template (use whatever one you want to start with, copy it, update each Item# with the field from your newly created Data Template), and then assign that graph to a PDU device. Once validate that its all functional, you can assign it en-mass to lots of devices. Alternatively, you can do this automagically by using the autom8 plugin (http://docs.cacti.net/plugin:autom8)

more details about the templates: http://docs.cacti.net/manual:088:3_templates
moxxbiales
Posts: 41
Joined: Thu Jun 04, 2015 11:36 am
Location: France

Re: Data query for CMCIII_PDU : Index problem

Post by moxxbiales »

Hi,
I'm still there but I have another stuff to work on before.
I'll try soon what you told me the last time and let you know the results.
Thanks again
:)
moxxbiales
Posts: 41
Joined: Thu Jun 04, 2015 11:36 am
Location: France

Re: Data query for CMCIII_PDU : Index problem

Post by moxxbiales »

Hi,
I'm really back !
I'll try to get my graphs done for my PDU today...
wich me luck !
:wink:
moxxbiales
Posts: 41
Joined: Thu Jun 04, 2015 11:36 am
Location: France

Re: Data query for CMCIII_PDU : Index problem

Post by moxxbiales »

Hi,
It's me again, really depressed because I don't understand AT ALL what happens...

1.SO, here is my XML file :
<interface>
<name>Get CMC VarTable information</name>
<description>recuperer les infos de la table Var de cmc3PDU</description>
<index_order_type>numeric</index_order_type>
<oid_index>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2</oid_index>

<fields>
<cmcIIIVarValueStr>
<name>TemperatureValueIN</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2</oid>
</cmcIIIVarValueStr>
<CBIB-3-A07_total>
<name>CBIB-3-A07_total</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.10</oid>
</CBIB-3-A07_total>
<CBIB-3-A07_plug1>
<name>CBIB-3-A07_plug1</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.17</oid>
</CBIB-3-A07_plug1>
<CBIB-3-A07_plug2>
<name>CBIB-3-A07_plug2</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.26</oid>
</CBIB-3-A07_plug2>
<CBIB-3-A07_plug3>
<name>CBIB-3-A07_plug3</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.35</oid>
</CBIB-3-A07_plug3>
<CBIB-3-A07_plug4>
<name>CBIB-3-A07_plug4</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.44</oid>
</CBIB-3-A07_plug4>
<CBIB-3-A07_plug5>
<name>CBIB-3-A07_plug5</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.53</oid>
</CBIB-3-A07_plug5>
<CBIB-3-A07_plug6>
<name>CBIB-3-A07_plug6</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.62</oid>
</CBIB-3-A07_plug6>
<CBIB-3-A07_plug7>
<name>CBIB-3-A07_plug7</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.71</oid>
</CBIB-3-A07_plug7>
<CBIB-3-A07_plug8>
<name>CBIB-3-A07_plug8</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.80</oid>
</CBIB-3-A07_plug8>

</fields>
</interface>

2. the verbose query

+ Running data query [20].
+ Found type = '3' [SNMP Query].
+ Found data query XML file at '/usr/share/cacti/resource/snmp_queries/cmc3pdu_vartable.xml'
+ XML file parsed ok.
+ <oid_num_indexes> missing in XML file, 'Index Count Changed' emulated by counting oid_index entries
+ Executing SNMP walk for list of indexes @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2' Index Count: 336
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.1' value: 'Gateway'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.2' value: '--'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.3' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.4' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.5' value: 'CBIB-3-A07'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.6' value: 'PSM8x8 C13'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.7' value: '2.2'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.8' value: '91'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.9' value: 'Circuit 1'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.10' value: '1.2 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.11' value: '13.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.12' value: '7.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.13' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.14' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.15' value: '68'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.16' value: 'Plug 1'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.17' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.18' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.19' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.20' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.21' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.22' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.23' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.24' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.25' value: 'Plug 2'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.26' value: '0.1 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.27' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.28' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.29' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.30' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.31' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.32' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.33' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.34' value: 'Plug 3'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.35' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.36' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.37' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.38' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.39' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.40' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.41' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.42' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.43' value: 'Plug 4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.44' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.45' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.46' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.47' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.48' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.49' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.50' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.51' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.52' value: 'Plug 5'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.53' value: '0.6 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.54' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.55' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.56' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.57' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.58' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.59' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.60' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.61' value: 'Plug 6'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.62' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.63' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.64' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.65' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.66' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.67' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.68' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.69' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.70' value: 'Plug 7'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.71' value: '0.3 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.72' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.73' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.74' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.75' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.76' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.77' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.78' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.79' value: 'Plug 8'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.80' value: '0.2 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.81' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.82' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.83' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.84' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.85' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.86' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.87' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.88' value: 'CBIB-3-B06'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.89' value: 'PSM8x8 C13'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.90' value: '2.2'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.91' value: '88'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.92' value: 'Circuit 1'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.93' value: '0.6 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.94' value: '13.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.95' value: '7.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.96' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.97' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.98' value: '68'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.99' value: 'Plug 1'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.100' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.101' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.102' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.103' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.104' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.105' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.106' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.107' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.108' value: 'Plug 2'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.109' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.110' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.111' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.112' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.113' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.114' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.115' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.116' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.117' value: 'Plug 3'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.118' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.119' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.120' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.121' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.122' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.123' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.124' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.125' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.126' value: 'Plug 4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.127' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.128' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.129' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.130' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.131' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.132' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.133' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.134' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.135' value: 'Plug 5'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.136' value: '0.5 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.137' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.138' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.139' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.140' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.141' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.142' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.143' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.144' value: 'Plug 6'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.145' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.146' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.147' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.148' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.149' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.150' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.151' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.152' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.153' value: 'Plug 7'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.154' value: '0.1 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.155' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.156' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.157' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.158' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.159' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.160' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.161' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.162' value: 'Plug 8'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.163' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.164' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.165' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.166' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.167' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.168' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.169' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.170' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.171' value: 'CBIB-3-A08'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.172' value: 'PSM8x8 C13'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.173' value: '2.2'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.174' value: '96'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.175' value: 'Circuit 1'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.176' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.177' value: '13.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.178' value: '7.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.179' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.180' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.181' value: '68'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.182' value: 'Plug 1'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.183' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.184' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.185' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.186' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.187' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.188' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.189' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.190' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.191' value: 'Plug 2'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.192' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.193' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.194' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.195' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.196' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.197' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.198' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.199' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.200' value: 'Plug 3'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.201' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.202' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.203' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.204' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.205' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.206' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.207' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.208' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.209' value: 'Plug 4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.210' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.211' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.212' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.213' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.214' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.215' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.216' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.217' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.218' value: 'Plug 5'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.219' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.220' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.221' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.222' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.223' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.224' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.225' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.226' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.227' value: 'Plug 6'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.228' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.229' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.230' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.231' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.232' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.233' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.234' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.235' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.236' value: 'Plug 7'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.237' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.238' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.239' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.240' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.241' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.242' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.243' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.244' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.245' value: 'Plug 8'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.246' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.247' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.248' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.249' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.250' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.251' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.252' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.253' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.254' value: 'CBIB-3-B07'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.255' value: 'PSM8x8 C13'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.256' value: '2.2'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.257' value: '84'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.258' value: 'Circuit 1'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.259' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.260' value: '13.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.261' value: '7.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.262' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.263' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.264' value: '68'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.265' value: 'Plug 1'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.266' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.267' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.268' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.269' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.270' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.271' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.272' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.273' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.274' value: 'Plug 2'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.275' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.276' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.277' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.278' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.279' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.280' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.281' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.282' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.283' value: 'Plug 3'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.284' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.285' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.286' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.287' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.288' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.289' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.290' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.291' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.292' value: 'Plug 4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.293' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.294' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.295' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.296' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.297' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.298' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.299' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.300' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.301' value: 'Plug 5'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.302' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.303' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.304' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.305' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.306' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.307' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.308' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.309' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.310' value: 'Plug 6'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.311' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.312' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.313' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.314' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.315' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.316' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.317' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.318' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.319' value: 'Plug 7'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.320' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.321' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.322' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.323' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.324' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.325' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.326' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.327' value: '4'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.328' value: 'Plug 8'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.329' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.330' value: '5.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.331' value: '2.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.332' value: '0.0 A'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.333' value: 'On'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.334' value: '0'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.335' value: 'OK'
+ Index found at OID: 'enterprises.2606.7.4.2.2.1.10.2.336' value: '4'
+ Located input field 'cmcIIIVarValueStr' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2'
+ Found item [cmcIIIVarValueStr='Gateway'] index: 1 [from value]
+ Found item [cmcIIIVarValueStr='--'] index: 2 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 3 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 4 [from value]
+ Found item [cmcIIIVarValueStr='CBIB-3-A07'] index: 5 [from value]
+ Found item [cmcIIIVarValueStr='PSM8x8 C13'] index: 6 [from value]
+ Found item [cmcIIIVarValueStr='2.2'] index: 7 [from value]
+ Found item [cmcIIIVarValueStr='91'] index: 8 [from value]
+ Found item [cmcIIIVarValueStr='Circuit 1'] index: 9 [from value]
+ Found item [cmcIIIVarValueStr='1.2 A'] index: 10 [from value]
+ Found item [cmcIIIVarValueStr='13.0 A'] index: 11 [from value]
+ Found item [cmcIIIVarValueStr='7.0 A'] index: 12 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 13 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 14 [from value]
+ Found item [cmcIIIVarValueStr='68'] index: 15 [from value]
+ Found item [cmcIIIVarValueStr='Plug 1'] index: 16 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 17 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 18 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 19 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 20 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 21 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 22 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 23 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 24 [from value]
+ Found item [cmcIIIVarValueStr='Plug 2'] index: 25 [from value]
+ Found item [cmcIIIVarValueStr='0.1 A'] index: 26 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 27 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 28 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 29 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 30 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 31 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 32 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 33 [from value]
+ Found item [cmcIIIVarValueStr='Plug 3'] index: 34 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 35 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 36 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 37 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 38 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 39 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 40 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 41 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 42 [from value]
+ Found item [cmcIIIVarValueStr='Plug 4'] index: 43 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 44 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 45 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 46 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 47 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 48 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 49 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 50 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 51 [from value]
+ Found item [cmcIIIVarValueStr='Plug 5'] index: 52 [from value]
+ Found item [cmcIIIVarValueStr='0.6 A'] index: 53 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 54 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 55 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 56 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 57 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 58 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 59 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 60 [from value]
+ Found item [cmcIIIVarValueStr='Plug 6'] index: 61 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 62 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 63 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 64 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 65 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 66 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 67 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 68 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 69 [from value]
+ Found item [cmcIIIVarValueStr='Plug 7'] index: 70 [from value]
+ Found item [cmcIIIVarValueStr='0.3 A'] index: 71 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 72 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 73 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 74 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 75 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 76 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 77 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 78 [from value]
+ Found item [cmcIIIVarValueStr='Plug 8'] index: 79 [from value]
+ Found item [cmcIIIVarValueStr='0.2 A'] index: 80 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 81 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 82 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 83 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 84 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 85 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 86 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 87 [from value]
+ Found item [cmcIIIVarValueStr='CBIB-3-B06'] index: 88 [from value]
+ Found item [cmcIIIVarValueStr='PSM8x8 C13'] index: 89 [from value]
+ Found item [cmcIIIVarValueStr='2.2'] index: 90 [from value]
+ Found item [cmcIIIVarValueStr='88'] index: 91 [from value]
+ Found item [cmcIIIVarValueStr='Circuit 1'] index: 92 [from value]
+ Found item [cmcIIIVarValueStr='0.6 A'] index: 93 [from value]
+ Found item [cmcIIIVarValueStr='13.0 A'] index: 94 [from value]
+ Found item [cmcIIIVarValueStr='7.0 A'] index: 95 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 96 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 97 [from value]
+ Found item [cmcIIIVarValueStr='68'] index: 98 [from value]
+ Found item [cmcIIIVarValueStr='Plug 1'] index: 99 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 100 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 101 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 102 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 103 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 104 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 105 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 106 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 107 [from value]
+ Found item [cmcIIIVarValueStr='Plug 2'] index: 108 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 109 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 110 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 111 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 112 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 113 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 114 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 115 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 116 [from value]
+ Found item [cmcIIIVarValueStr='Plug 3'] index: 117 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 118 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 119 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 120 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 121 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 122 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 123 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 124 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 125 [from value]
+ Found item [cmcIIIVarValueStr='Plug 4'] index: 126 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 127 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 128 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 129 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 130 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 131 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 132 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 133 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 134 [from value]
+ Found item [cmcIIIVarValueStr='Plug 5'] index: 135 [from value]
+ Found item [cmcIIIVarValueStr='0.5 A'] index: 136 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 137 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 138 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 139 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 140 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 141 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 142 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 143 [from value]
+ Found item [cmcIIIVarValueStr='Plug 6'] index: 144 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 145 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 146 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 147 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 148 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 149 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 150 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 151 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 152 [from value]
+ Found item [cmcIIIVarValueStr='Plug 7'] index: 153 [from value]
+ Found item [cmcIIIVarValueStr='0.1 A'] index: 154 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 155 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 156 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 157 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 158 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 159 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 160 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 161 [from value]
+ Found item [cmcIIIVarValueStr='Plug 8'] index: 162 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 163 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 164 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 165 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 166 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 167 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 168 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 169 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 170 [from value]
+ Found item [cmcIIIVarValueStr='CBIB-3-A08'] index: 171 [from value]
+ Found item [cmcIIIVarValueStr='PSM8x8 C13'] index: 172 [from value]
+ Found item [cmcIIIVarValueStr='2.2'] index: 173 [from value]
+ Found item [cmcIIIVarValueStr='96'] index: 174 [from value]
+ Found item [cmcIIIVarValueStr='Circuit 1'] index: 175 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 176 [from value]
+ Found item [cmcIIIVarValueStr='13.0 A'] index: 177 [from value]
+ Found item [cmcIIIVarValueStr='7.0 A'] index: 178 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 179 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 180 [from value]
+ Found item [cmcIIIVarValueStr='68'] index: 181 [from value]
+ Found item [cmcIIIVarValueStr='Plug 1'] index: 182 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 183 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 184 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 185 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 186 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 187 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 188 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 189 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 190 [from value]
+ Found item [cmcIIIVarValueStr='Plug 2'] index: 191 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 192 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 193 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 194 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 195 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 196 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 197 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 198 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 199 [from value]
+ Found item [cmcIIIVarValueStr='Plug 3'] index: 200 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 201 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 202 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 203 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 204 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 205 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 206 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 207 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 208 [from value]
+ Found item [cmcIIIVarValueStr='Plug 4'] index: 209 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 210 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 211 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 212 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 213 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 214 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 215 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 216 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 217 [from value]
+ Found item [cmcIIIVarValueStr='Plug 5'] index: 218 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 219 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 220 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 221 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 222 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 223 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 224 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 225 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 226 [from value]
+ Found item [cmcIIIVarValueStr='Plug 6'] index: 227 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 228 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 229 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 230 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 231 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 232 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 233 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 234 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 235 [from value]
+ Found item [cmcIIIVarValueStr='Plug 7'] index: 236 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 237 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 238 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 239 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 240 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 241 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 242 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 243 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 244 [from value]
+ Found item [cmcIIIVarValueStr='Plug 8'] index: 245 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 246 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 247 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 248 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 249 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 250 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 251 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 252 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 253 [from value]
+ Found item [cmcIIIVarValueStr='CBIB-3-B07'] index: 254 [from value]
+ Found item [cmcIIIVarValueStr='PSM8x8 C13'] index: 255 [from value]
+ Found item [cmcIIIVarValueStr='2.2'] index: 256 [from value]
+ Found item [cmcIIIVarValueStr='84'] index: 257 [from value]
+ Found item [cmcIIIVarValueStr='Circuit 1'] index: 258 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 259 [from value]
+ Found item [cmcIIIVarValueStr='13.0 A'] index: 260 [from value]
+ Found item [cmcIIIVarValueStr='7.0 A'] index: 261 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 262 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 263 [from value]
+ Found item [cmcIIIVarValueStr='68'] index: 264 [from value]
+ Found item [cmcIIIVarValueStr='Plug 1'] index: 265 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 266 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 267 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 268 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 269 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 270 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 271 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 272 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 273 [from value]
+ Found item [cmcIIIVarValueStr='Plug 2'] index: 274 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 275 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 276 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 277 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 278 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 279 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 280 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 281 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 282 [from value]
+ Found item [cmcIIIVarValueStr='Plug 3'] index: 283 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 284 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 285 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 286 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 287 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 288 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 289 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 290 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 291 [from value]
+ Found item [cmcIIIVarValueStr='Plug 4'] index: 292 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 293 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 294 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 295 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 296 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 297 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 298 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 299 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 300 [from value]
+ Found item [cmcIIIVarValueStr='Plug 5'] index: 301 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 302 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 303 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 304 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 305 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 306 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 307 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 308 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 309 [from value]
+ Found item [cmcIIIVarValueStr='Plug 6'] index: 310 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 311 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 312 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 313 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 314 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 315 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 316 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 317 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 318 [from value]
+ Found item [cmcIIIVarValueStr='Plug 7'] index: 319 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 320 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 321 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 322 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 323 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 324 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 325 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 326 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 327 [from value]
+ Found item [cmcIIIVarValueStr='Plug 8'] index: 328 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 329 [from value]
+ Found item [cmcIIIVarValueStr='5.0 A'] index: 330 [from value]
+ Found item [cmcIIIVarValueStr='2.0 A'] index: 331 [from value]
+ Found item [cmcIIIVarValueStr='0.0 A'] index: 332 [from value]
+ Found item [cmcIIIVarValueStr='On'] index: 333 [from value]
+ Found item [cmcIIIVarValueStr='0'] index: 334 [from value]
+ Found item [cmcIIIVarValueStr='OK'] index: 335 [from value]
+ Found item [cmcIIIVarValueStr='4'] index: 336 [from value]
+ Located input field 'CBIB-3-A07_total' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.10'
+ Found item [CBIB-3-A07_total='1.2 A'] index: 10 [from value]
+ Located input field 'CBIB-3-A07_plug1' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.17'
+ Found item [CBIB-3-A07_plug1='0.0 A'] index: 17 [from value]
+ Located input field 'CBIB-3-A07_plug2' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.26'
+ Found item [CBIB-3-A07_plug2='0.1 A'] index: 26 [from value]
+ Located input field 'CBIB-3-A07_plug3' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.35'
+ Found item [CBIB-3-A07_plug3='0.0 A'] index: 35 [from value]
+ Located input field 'CBIB-3-A07_plug4' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.44'
+ Found item [CBIB-3-A07_plug4='0.0 A'] index: 44 [from value]
+ Located input field 'CBIB-3-A07_plug5' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.53'
+ Found item [CBIB-3-A07_plug5='0.6 A'] index: 53 [from value]
+ Located input field 'CBIB-3-A07_plug6' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.62'
+ Found item [CBIB-3-A07_plug6='0.0 A'] index: 62 [from value]
+ Located input field 'CBIB-3-A07_plug7' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.71'
+ Found item [CBIB-3-A07_plug7='0.3 A'] index: 71 [from value]
+ Located input field 'CBIB-3-A07_plug8' [walk]
+ Executing SNMP walk for data @ '.1.3.6.1.4.1.2606.7.4.2.2.1.10.2.80'
+ Found item [CBIB-3-A07_plug8='0.2 A'] index: 80 [from value]

3. this what i get when I create graph for this host
(see attachment)

I've got that weird columns for each OID needed (power total, power for plug 1, power for plug2, etc.)
But, as I've chosen the "input method", i presume that I won't get any graph.
And If use the "output method", those item doesn't appear in the create graph page (as I told before I think...)

I've started to create single OID but for 9oid x24 PDU...it's near to 200 data templates : impossible !!!!
I've seen that there was a way to create XML file without index by using REGEX. Does it ring a bell to someone ,
I think i'm going to dig in this direction.
Thanks anyway
Attachments
Sélection_003.jpg
Sélection_003.jpg (133.64 KiB) Viewed 1455 times
Sélection_001.jpg
Sélection_001.jpg (80.63 KiB) Viewed 1457 times
Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests