Opened 12 years ago

Last modified 12 years ago

#133 new

no method is provided for storing sliver measurements

Reported by: chaos@bbn.com Owned by: somebody
Priority: critical Milestone: GEC15 demo
Component: Clients Version:
Keywords: v1.1.4 Cc:
Dependencies:

Description (last modified by chaos@bbn.com)

If i define a measurement and attach it to a sliver object, e.g.:

  if timevals and len(timevals.keys()) > 0:
    foam_sliver_state = gmoc.SliverState()
    for rrd_time in sorted(timevals.keys()):
      foam_sliver_state.addData(rrd_time, timevals[rrd_time])
    sliver_obj.addMeasurement(foam_sliver_state)

there is no way to store that measurement data back to GMOC:

  • The store() method of GMOCClient iterates through all children of the POP object, storing their relations as well. The storeMeasurements() method does not iterate, but only stores the measurements for the given argument itself.
  • In addition, storeMeasurements() cannot be called on any class which doesn't define a POP. In particular, the code:
    for [sliver_name, sliver_obj] in slivers.items():
      result = data.storeMeasurements(sliver_obj)
    
    yields:
    Traceback (most recent call last):
      File "./report_relations", line 370, in <module>
        result = data.storeMeasurements(sliver_obj)
      File "/home/chaos/gmoc.py", line 2314, in storeMeasurements
        pop = obj.pop
    AttributeError: 'Sliver' object has no attribute 'pop'
    

Change History (4)

comment:1 Changed 12 years ago by chaos@bbn.com

Description: modified (diff)

In my opinion, the correct fix is for storeMeasurements() to iterate down from a POP the same way store() does, for two reasons:

  1. It's inefficient to authenticate to GMOC once per sliver/resource/aggregate when submitting data.
  2. Monitoring client authors will find it surprising when they can call store() only once, but have to handle iterating on storeMeasurements() themselves. They are likely to make mistakes. The logic inside gmoc.py should be written to handle the relations and measurements cases the same way.

I think this is the most critical of the measurement bugs currently open.

comment:2 Changed 12 years ago by chaos@bbn.com

Keywords: v1.1.0 added

comment:3 Changed 12 years ago by chaos@bbn.com

Keywords: v1.1.4 added; v1.1.0 removed

Using 1.1.4, when i try to submit, i get:

tau-verde,[~],22:49(0)$ sudo -u ganglia ./report_relations -d
Submitting:

<?xml version="1.0" ?>
<gmoc_topology time="1350892170" version="4">
        <pop name="urn:publicid:IDN+gmoc.geni.net+pop+gpolab"/>
        <aggregate name="foam5.gpolab.bbn.com:3626" organization="urn:publicid:IDN+gmoc.geni.net+organization+BBN" pop="urn:publicid:IDN+gmoc.geni.net+pop+gpolab" type="foam" version="0.8.2">
                <sliver approved="true" created="1342549645" creator="urn:publicid:IDN+gmoc.geni.net+contact+user-not-known" expires="1362114000" local_name="urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-montreve-macaddr:b72b0a06-beb9-4be2-94ba-cfbd8654ad82" slice_urn="urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-montreve-macaddr" slice_uuid="None" state="Up" uuid="b72b0a06-beb9-4be2-94ba-cfbd8654ad82">
                        <resource_mapping local_name="b72b0a06-beb9-4be2-94ba-cfbd8654ad82" resource="urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:26:f1:3f:3b:00" type="flowspace"/>
                        <resource_mapping local_name="b72b0a06-beb9-4be2-94ba-cfbd8654ad82" resource="urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:12:e2:b8:a5:d0" type="flowspace"/>
                </sliver>
                <sliver approved="true" created="1342549645" creator="urn:publicid:IDN+gmoc.geni.net+contact+user-not-known" expires="1362200400" local_name="urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-poblano1101-datapath:9c3476a5-dfe9-4d8c-9d2d-3b20d846f36a" slice_urn="urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-poblano1101-datapath" slice_uuid="None" state="Up" uuid="9c3476a5-dfe9-4d8c-9d2d-3b20d846f36a">
                        <resource_mapping local_name="9c3476a5-dfe9-4d8c-9d2d-3b20d846f36a" resource="urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:12:e2:b8:a5:d0" type="flowspace"/>
                </sliver>
        </aggregate>
        <resource aggregate="foam5.gpolab.bbn.com:3626" description="" name="urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:12:e2:b8:a5:d0" organization="urn:publicid:IDN+gmoc.geni.net+organization+BBN" pop="urn:publicid:IDN+gmoc.geni.net+pop+gpolab" state="Unknown" type="datapath"/>
        <resource aggregate="foam5.gpolab.bbn.com:3626" description="" name="urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:26:f1:3f:3b:00" organization="urn:publicid:IDN+gmoc.geni.net+organization+BBN" pop="urn:publicid:IDN+gmoc.geni.net+pop+gpolab" state="Unknown" type="datapath"/>
</gmoc_topology>

Submitting:

<?xml version="1.0" ?>
<timeseries_data originator="someone" time="1350874171" version="0.1">
        <type_info name="foam_sliver_state">
                <column_names>
                        approved,enabled,pending,rejected
                </column_names>
                <column_units>
                        N,N,N,N
                </column_units>
        </type_info>
        <type_info name="node_disk">
                <column_names>
                        disk_part_max_used
                </column_names>
                <column_units>
                        percent
                </column_units>
        </type_info>
        <type_info name="foam_state">
                <column_names>
                        slivers
                </column_names>
                <column_units>
                        N
                </column_units>
        </type_info>
        <type_info name="flowvisor_dpid_stats">
                <column_names>
                        ports,ro_rules,rw_rules,tx_msgs,rx_msgs,drop_msgs,tx_msgs_flow_mod,tx_msgs_flow_remove,tx_msgs_error,tx_msgs_packet_in,tx_msgs_packet_out,tx_msgs_vendor,tx_msgs_other,rx_msgs_flow_mod,rx_msgs_flow_remove,rx_msgs_error,rx_msgs_packet_in,rx_msgs_packet_out,rx_msgs_vendor,rx_msgs_other
                </column_names>
                <column_units>
                        N,N,N,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s,msgs/s
                </column_units>
        </type_info>
        <type_info name="node_cpu">
                <column_names>
                        cpu_idle
                </column_names>
                <column_units>
                        percent
                </column_units>
        </type_info>
        <node_info name="foam5.gpolab.bbn.com:3626">
                <location>
                        urn:publicid:IDN+gmoc.geni.net+pop+gpolab
                </location>
                <tags/>
        </node_info>
        <data_group end="1350874125" heartbeat="60" interval_type="open_closed" name="foam5.gpolab.bbn.com:3626-foam_state" start="1350873855" step="15">
                <column_names>
                        slivers
                </column_names>
                <type>
                        foam_state
                </type>
                <node_name>
                        foam5.gpolab.bbn.com:3626
                </node_name>
                <tags>
                        foam5.gpolab.bbn.com:3626
                </tags>
                <data>
                        1350873840,;
1350873855,2.0;
1350873870,2.0;
1350873885,2.0;
1350873900,2.0;
1350873915,2.0;
1350873930,2.0;
1350873945,2.0;
1350873960,2.0;
1350873975,2.0;
1350873990,2.0;
1350874005,2.0;
1350874020,2.0;
1350874035,2.0;
1350874050,2.0;
1350874065,2.0;
1350874080,2.0;
1350874095,2.0;
1350874110,2.0;
1350874125,2.0;

                </data>
        </data_group>
        <data_group end="1350874125" heartbeat="60" interval_type="open_closed" name="urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-montreve-macaddr:b72b0a06-beb9-4be2-94ba-cfbd8654ad82-foam_sliver_state-sliver_urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-montreve-macaddr:b72b0a06-beb9-4be2-94ba-cfbd8654ad82" start="1350873855" step="15">
                <column_names>
                        approved,enabled,pending,rejected
                </column_names>
                <type>
                        foam_sliver_state
                </type>
                <node_name>
                        urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-montreve-macaddr:b72b0a06-beb9-4be2-94ba-cfbd8654ad82
                </node_name>
                <tags>
                        sliver:urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-montreve-macaddr:b72b0a06-beb9-4be2-94ba-cfbd8654ad82
                </tags>
                <data>
                        1350873840,,,,;
1350873855,1.0,1.0,0.0,0.0;
1350873870,1.0,1.0,0.0,0.0;
1350873885,1.0,1.0,0.0,0.0;
1350873900,1.0,1.0,0.0,0.0;
1350873915,1.0,1.0,0.0,0.0;
1350873930,1.0,1.0,0.0,0.0;
1350873945,1.0,1.0,0.0,0.0;
1350873960,1.0,1.0,0.0,0.0;
1350873975,1.0,1.0,0.0,0.0;
1350873990,1.0,1.0,0.0,0.0;
1350874005,1.0,1.0,0.0,0.0;
1350874020,1.0,1.0,0.0,0.0;
1350874035,1.0,1.0,0.0,0.0;
1350874050,1.0,1.0,0.0,0.0;
1350874065,1.0,1.0,0.0,0.0;
1350874080,1.0,1.0,0.0,0.0;
1350874095,1.0,1.0,0.0,0.0;
1350874110,1.0,1.0,0.0,0.0;
1350874125,1.0,1.0,0.0,0.0;

                </data>
        </data_group>
        <data_group end="1350874125" heartbeat="60" interval_type="open_closed" name="urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-poblano1101-datapath:9c3476a5-dfe9-4d8c-9d2d-3b20d846f36a-foam_sliver_state-sliver_urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-poblano1101-datapath:9c3476a5-dfe9-4d8c-9d2d-3b20d846f36a" start="1350873855" step="15">
                <column_names>
                        approved,enabled,pending,rejected
                </column_names>
                <type>
                        foam_sliver_state
                </type>
                <node_name>
                        urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-poblano1101-datapath:9c3476a5-dfe9-4d8c-9d2d-3b20d846f36a
                </node_name>
                <tags>
                        sliver:urn:publicid:IDN+pgeni.gpolab.bbn.com+slice+chaos-poblano1101-datapath:9c3476a5-dfe9-4d8c-9d2d-3b20d846f36a
                </tags>
                <data>
                        1350873840,,,,;
1350873855,1.0,1.0,0.0,0.0;
1350873870,1.0,1.0,0.0,0.0;
1350873885,1.0,1.0,0.0,0.0;
1350873900,1.0,1.0,0.0,0.0;
1350873915,1.0,1.0,0.0,0.0;
1350873930,1.0,1.0,0.0,0.0;
1350873945,1.0,1.0,0.0,0.0;
1350873960,1.0,1.0,0.0,0.0;
1350873975,1.0,1.0,0.0,0.0;
1350873990,1.0,1.0,0.0,0.0;
1350874005,1.0,1.0,0.0,0.0;
1350874020,1.0,1.0,0.0,0.0;
1350874035,1.0,1.0,0.0,0.0;
1350874050,1.0,1.0,0.0,0.0;
1350874065,1.0,1.0,0.0,0.0;
1350874080,1.0,1.0,0.0,0.0;
1350874095,1.0,1.0,0.0,0.0;
1350874110,1.0,1.0,0.0,0.0;
1350874125,1.0,1.0,0.0,0.0;

                </data>
        </data_group>
        <data_group end="1350874125" heartbeat="60" interval_type="open_closed" name="urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:26:f1:3f:3b:00-flowvisor_dpid_stats-dpid_urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:26:f1:3f:3b:00" start="1350873855" step="15">
                <column_names>
                        ports,ro_rules,rw_rules,tx_msgs,rx_msgs,drop_msgs,tx_msgs_flow_mod,tx_msgs_flow_remove,tx_msgs_error,tx_msgs_packet_in,tx_msgs_packet_out,tx_msgs_vendor,tx_msgs_other,rx_msgs_flow_mod,rx_msgs_flow_remove,rx_msgs_error,rx_msgs_packet_in,rx_msgs_packet_out,rx_msgs_vendor,rx_msgs_other
                </column_names>
                <type>
                        flowvisor_dpid_stats
                </type>
                <node_name>
                        urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:26:f1:3f:3b:00
                </node_name>
                <tags>
                        dpid:urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:26:f1:3f:3b:00
                </tags>
                <data>
                        1350873840,,,,,,,,,,,,,,,,,,,,;
1350873855,6.0,0.0,2.0,1.49069679849,3.7234086629,0.0,0.0677589453861,None,0.0,0.0,1.21966101695,0.0,0.203276836158,0.0,None,0.0,3.421826742,0.0,0.0,0.203276836158;
1350873870,6.0,0.0,2.0,1.49069679849,3.7234086629,0.0,0.0677589453861,None,0.0,0.0,1.21966101695,0.0,0.203276836158,0.0,None,0.0,3.421826742,0.0,0.0,0.203276836158;
1350873885,6.0,0.0,2.0,1.49069679849,3.7234086629,0.0,0.0677589453861,None,0.0,0.0,1.21966101695,0.0,0.203276836158,0.0,None,0.0,3.421826742,0.0,0.0,0.203276836158;
1350873900,6.0,0.0,2.0,1.53193973634,3.70096045198,0.0,0.0989265536723,None,0.0,0.0,1.23290018832,0.0,0.20011299435,0.0,None,0.0,3.43301318267,0.0,0.0,0.20011299435;
1350873915,6.0,0.0,2.0,1.53193973634,3.70096045198,0.0,0.0989265536723,None,0.0,0.0,1.23290018832,0.0,0.20011299435,0.0,None,0.0,3.43301318267,0.0,0.0,0.20011299435;
1350873930,6.0,0.0,2.0,1.53193973634,3.70096045198,0.0,0.0989265536723,None,0.0,0.0,1.23290018832,0.0,0.20011299435,0.0,None,0.0,3.43301318267,0.0,0.0,0.20011299435;
1350873945,6.0,0.0,2.0,1.53193973634,3.70096045198,0.0,0.0989265536723,None,0.0,0.0,1.23290018832,0.0,0.20011299435,0.0,None,0.0,3.43301318267,0.0,0.0,0.20011299435;
1350873960,6.0,0.0,2.0,1.50166666667,3.76333333334,0.0,0.1,None,0.0,0.0,1.20166666667,0.0,0.2,0.0,None,0.0,3.40166666667,0.0,0.0,0.2;
1350873975,6.0,0.0,2.0,1.50166666667,3.76333333334,0.0,0.1,None,0.0,0.0,1.20166666667,0.0,0.2,0.0,None,0.0,3.40166666667,0.0,0.0,0.2;
1350873990,6.0,0.0,2.0,1.50166666667,3.76333333334,0.0,0.1,None,0.0,0.0,1.20166666667,0.0,0.2,0.0,None,0.0,3.40166666667,0.0,0.0,0.2;
1350874005,6.0,0.0,2.0,1.50166666667,3.76333333334,0.0,0.1,None,0.0,0.0,1.20166666667,0.0,0.2,0.0,None,0.0,3.40166666667,0.0,0.0,0.2;
1350874020,6.0,0.0,2.0,1.44364406779,3.56968926554,0.0,0.0211016949153,None,0.0,0.0,1.2193220339,0.0,0.203220338983,0.0,None,0.0,3.35813559322,0.0,0.0,0.203220338983;
1350874035,6.0,0.0,2.0,1.44364406779,3.56968926554,0.0,0.0211016949153,None,0.0,0.0,1.2193220339,0.0,0.203220338983,0.0,None,0.0,3.35813559322,0.0,0.0,0.203220338983;
1350874050,6.0,0.0,2.0,1.44364406779,3.56968926554,0.0,0.0211016949153,None,0.0,0.0,1.2193220339,0.0,0.203220338983,0.0,None,0.0,3.35813559322,0.0,0.0,0.203220338983;
1350874065,6.0,0.0,2.0,1.44364406779,3.56968926554,0.0,0.0211016949153,None,0.0,0.0,1.2193220339,0.0,0.203220338983,0.0,None,0.0,3.35813559322,0.0,0.0,0.203220338983;
1350874080,6.0,0.0,2.0,1.42429378531,3.62485875706,0.0,0.0333333333333,None,0.0,0.0,1.18757062147,0.0,0.203389830508,0.0,None,0.0,3.37231638418,0.0,0.0,0.203389830508;
1350874095,6.0,0.0,2.0,1.42429378531,3.62485875706,0.0,0.0333333333333,None,0.0,0.0,1.18757062147,0.0,0.203389830508,0.0,None,0.0,3.37231638418,0.0,0.0,0.203389830508;
1350874110,6.0,0.0,2.0,1.42429378531,3.62485875706,0.0,0.0333333333333,None,0.0,0.0,1.18757062147,0.0,0.203389830508,0.0,None,0.0,3.37231638418,0.0,0.0,0.203389830508;
1350874125,6.0,0.0,2.0,1.42429378531,3.62485875706,0.0,0.0333333333333,None,0.0,0.0,1.18757062147,0.0,0.203389830508,0.0,None,0.0,3.37231638418,0.0,0.0,0.203389830508;

                </data>
        </data_group>
        <data_group end="1350874125" heartbeat="60" interval_type="open_closed" name="foam5.gpolab.bbn.com:3626-node_cpu-aggregate_foam5.gpolab.bbn.com:3626" start="1350873855" step="15">
                <column_names>
                        cpu_idle
                </column_names>
                <type>
                        node_cpu
                </type>
                <node_name>
                        foam5.gpolab.bbn.com:3626
                </node_name>
                <tags>
                        aggregate:foam5.gpolab.bbn.com:3626
                </tags>
                <data>
                        1350873840,;
1350873855,97.4;
1350873870,97.4;
1350873885,97.4;
1350873900,97.4;
1350873915,97.4;
1350873930,97.4;
1350873945,97.4;
1350873960,97.4;
1350873975,97.4;
1350873990,97.4;
1350874005,97.4;
1350874020,97.4;
1350874035,97.4;
1350874050,97.4;
1350874065,97.4;
1350874080,97.4;
1350874095,97.4;
1350874110,97.4;
1350874125,97.4;

                </data>
        </data_group>
        <data_group end="1350874125" heartbeat="60" interval_type="open_closed" name="urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:12:e2:b8:a5:d0-flowvisor_dpid_stats-dpid_urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:12:e2:b8:a5:d0" start="1350873855" step="15">
                <column_names>
                        ports,ro_rules,rw_rules,tx_msgs,rx_msgs,drop_msgs,tx_msgs_flow_mod,tx_msgs_flow_remove,tx_msgs_error,tx_msgs_packet_in,tx_msgs_packet_out,tx_msgs_vendor,tx_msgs_other,rx_msgs_flow_mod,rx_msgs_flow_remove,rx_msgs_error,rx_msgs_packet_in,rx_msgs_packet_out,rx_msgs_vendor,rx_msgs_other
                </column_names>
                <type>
                        flowvisor_dpid_stats
                </type>
                <node_name>
                        urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:12:e2:b8:a5:d0
                </node_name>
                <tags>
                        dpid:urn:publicid:IDN+openflow:foam:foam5.gpolab.bbn.com+datapath+04:4d:00:12:e2:b8:a5:d0
                </tags>
                <data>
                        1350873840,,,,,,,,,,,,,,,,,,,,;
1350873855,5.0,0.0,3.0,1.52679849341,3.87364406779,0.0,0.135517890772,None,0.0,0.0,1.18800376648,0.0,0.203276836158,0.0,None,0.0,3.47375706215,0.0,0.0,0.203276836158;
1350873870,5.0,0.0,3.0,1.52679849341,3.87364406779,0.0,0.135517890772,None,0.0,0.0,1.18800376648,0.0,0.203276836158,0.0,None,0.0,3.47375706215,0.0,0.0,0.203276836158;
1350873885,5.0,0.0,3.0,1.52679849341,3.87364406779,0.0,0.135517890772,None,0.0,0.0,1.18800376648,0.0,0.203276836158,0.0,None,0.0,3.47375706215,0.0,0.0,0.203276836158;
1350873900,5.0,0.0,3.0,1.62973634651,3.86715630885,0.0,0.197853107345,None,0.0,0.0,1.23177024482,0.0,0.20011299435,0.0,None,0.0,3.53137476459,0.0,0.0,0.20011299435;
1350873915,5.0,0.0,3.0,1.62973634651,3.86715630885,0.0,0.197853107345,None,0.0,0.0,1.23177024482,0.0,0.20011299435,0.0,None,0.0,3.53137476459,0.0,0.0,0.20011299435;
1350873930,5.0,0.0,3.0,1.62973634651,3.86715630885,0.0,0.197853107345,None,0.0,0.0,1.23177024482,0.0,0.20011299435,0.0,None,0.0,3.53137476459,0.0,0.0,0.20011299435;
1350873945,5.0,0.0,3.0,1.62973634651,3.86715630885,0.0,0.197853107345,None,0.0,0.0,1.23177024482,0.0,0.20011299435,0.0,None,0.0,3.53137476459,0.0,0.0,0.20011299435;
1350873960,5.0,0.0,3.0,1.60166666667,4.025,0.0,0.2,None,0.0,0.0,1.20166666667,0.0,0.2,0.0,None,0.0,3.50166666667,0.0,0.0,0.2;
1350873975,5.0,0.0,3.0,1.60166666667,4.025,0.0,0.2,None,0.0,0.0,1.20166666667,0.0,0.2,0.0,None,0.0,3.50166666667,0.0,0.0,0.2;
1350873990,5.0,0.0,3.0,1.60166666667,4.025,0.0,0.2,None,0.0,0.0,1.20166666667,0.0,0.2,0.0,None,0.0,3.50166666667,0.0,0.0,0.2;
1350874005,5.0,0.0,3.0,1.60166666667,4.025,0.0,0.2,None,0.0,0.0,1.20166666667,0.0,0.2,0.0,None,0.0,3.50166666667,0.0,0.0,0.2;
1350874020,5.0,0.0,3.0,1.46474576271,3.6152259887,0.0,0.0422033898305,None,0.0,0.0,1.2193220339,0.0,0.203220338983,0.0,None,0.0,3.39533898305,0.0,0.0,0.203220338983;
1350874035,5.0,0.0,3.0,1.46474576271,3.6152259887,0.0,0.0422033898305,None,0.0,0.0,1.2193220339,0.0,0.203220338983,0.0,None,0.0,3.39533898305,0.0,0.0,0.203220338983;
1350874050,5.0,0.0,3.0,1.46474576271,3.6152259887,0.0,0.0422033898305,None,0.0,0.0,1.2193220339,0.0,0.203220338983,0.0,None,0.0,3.39533898305,0.0,0.0,0.203220338983;
1350874065,5.0,0.0,3.0,1.46474576271,3.6152259887,0.0,0.0422033898305,None,0.0,0.0,1.2193220339,0.0,0.203220338983,0.0,None,0.0,3.39533898305,0.0,0.0,0.203220338983;
1350874080,5.0,0.0,3.0,1.49039548023,3.70790960452,0.0,0.0666666666667,None,0.0,0.0,1.22033898305,0.0,0.203389830508,0.0,None,0.0,3.40621468927,0.0,0.0,0.203389830508;
1350874095,5.0,0.0,3.0,1.49039548023,3.70790960452,0.0,0.0666666666667,None,0.0,0.0,1.22033898305,0.0,0.203389830508,0.0,None,0.0,3.40621468927,0.0,0.0,0.203389830508;
1350874110,5.0,0.0,3.0,1.49039548023,3.70790960452,0.0,0.0666666666667,None,0.0,0.0,1.22033898305,0.0,0.203389830508,0.0,None,0.0,3.40621468927,0.0,0.0,0.203389830508;
1350874125,5.0,0.0,3.0,1.49039548023,3.70790960452,0.0,0.0666666666667,None,0.0,0.0,1.22033898305,0.0,0.203389830508,0.0,None,0.0,3.40621468927,0.0,0.0,0.203389830508;

                </data>
        </data_group>
        <data_group end="1350874125" heartbeat="60" interval_type="open_closed" name="foam5.gpolab.bbn.com:3626-node_disk-aggregate_foam5.gpolab.bbn.com:3626" start="1350873855" step="15">
                <column_names>
                        disk_part_max_used
                </column_names>
                <type>
                        node_disk
                </type>
                <node_name>
                        foam5.gpolab.bbn.com:3626
                </node_name>
                <tags>
                        aggregate:foam5.gpolab.bbn.com:3626
                </tags>
                <data>
                        1350873840,;
1350873855,33.0;
1350873870,33.0;
1350873885,33.0;
1350873900,33.0;
1350873915,33.0;
1350873930,33.0;
1350873945,33.0;
1350873960,33.0;
1350873975,33.0;
1350873990,33.0;
1350874005,33.0;
1350874020,33.0;
1350874035,33.0;
1350874050,33.0;
1350874065,33.0;
1350874080,33.0;
1350874095,33.0;
1350874110,33.0;
1350874125,33.0;

                </data>
        </data_group>
</timeseries_data>

{'status': '500', 'content-length': '622', 'vary': 'Accept-Encoding', 'server': 'Apache/2.2.3 (Red Hat)', 'connection': 'close', '-content-encoding': 'gzip', 'date': 'Mon, 22 Oct 2012 02:49:31 GMT', 'content-type': 'text/html; charset=iso-8859-1'}
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>500 Internal Server Error</title>
</head><body>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error or
misconfiguration and was unable to complete
your request.</p>
<p>Please contact the server administrator,
 root@localhost and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.</p>
<p>More information about this error may be available
in the server error log.</p>
<hr>
<address>Apache/2.2.3 (Red Hat) Server at gmoc-db2.grnoc.iu.edu Port 443</address>
</body></html>

Attempted to submit agg measurement data, but received: 16

I guess maybe i should close this ticket as resolved, but i think while the submission is failing, we can't tell.

One thing that jumps out at me is that slivers and datapath resources are defined as <node_name> in the data_group elements, but are not defined in <node_info>. I'm pretty sure the server won't accept that.

comment:4 Changed 12 years ago by chaos@bbn.com

When i submit with the POP as the object, i seem to get the same result. So i think that much is working.

Note: See TracTickets for help on using tickets.