Custom Query (121 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 121)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#131 fixed typo in FOAMSliverCount() metric somebody chaos@bbn.com
Description

The code:

foam_slivers_rrd = '%s/foam_slivers.rrd' % (RRD_DIR)
if os.path.isfile(foam_slivers_rrd):
  foam_state = gmoc.FOAMSliverCount()
  foam_state.loadRRD(foam_slivers_rrd, start_secs, end_secs)
  aggregate.addMeasurement(foam_state)

yields:

tau-verde,[~],19:36(148)$ sudo -u ganglia ./report_relations -d
Traceback (most recent call last):
  File "./report_relations", line 311, in <module>
    aggregate.addMeasurement(foam_state)
  File "/home/chaos/gmoc.py", line 1237, in addMeasurement
    if self.type == None or not self.type.uppercase == "FOAM":
AttributeError: 'str' object has no attribute 'uppercase'
#130 fixed aggregate measurements link to bogus graphs mrmccrac@grnoc.iu.edu chaos@bbn.com
Description

To replicate:

The UI brings up the graph of some arbitrary unrelated measurement (a "flowvisor-slice-state" measurement in every graph i've tried so far, but that's probably coincidence), rather than the requested measurement.

#129 fixed when gmoc.py tries to submit data, it should store the response it gets in a variable somebody chaos@bbn.com
Description

When gmoc.py tries to submit relational or measurement data, it prints parts of the response it gets, if invoked in verbose mode. In addition to this, gmoc.py should also store those responses in variables belonging to the object, so that if the calling program wants to print things at a different granularity from the gmoc.py defaults, it can.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.