diff options
author | 2017-09-29 03:31:16 +0000 | |
---|---|---|
committer | 2017-09-29 15:39:23 +0000 | |
commit | 375c6e8d7bef83de5799076e13d3f6083419647a (patch) | |
tree | 3c02335d853835642ef8363d42d499c8f1f5176e | |
parent | 6583ef43a9bbfb255d67aab3512726c584650090 (diff) |
Changing directory in CSV testcases for Barometer
This patch contains modifications to the path for CSV
directories
Change-Id: Ia74a6aba47fc51d0d8783df34eebcfc94e3f011d
Signed-off-by: Sharada Shiddibhavi <sharada.shiddibhavi@intel.com>
-rw-r--r-- | baro_tests/collectd.py | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/baro_tests/collectd.py b/baro_tests/collectd.py index 1b5a9232..3cd55bf1 100644 --- a/baro_tests/collectd.py +++ b/baro_tests/collectd.py @@ -210,21 +210,27 @@ class CSVClient(object): meter_category, date)) stdout2 = node.run_cmd( "tail -1 /var/lib/collectd/csv/" - + "{0}.jf.intel.com/{1}/{2}-{3}".format( - compute_node.get_name(), plugin_subdir, + + "{0}/{1}/{2}-{3}".format( + hostname, plugin_subdir, meter_category, date)) # Storing last two values values = stdout1 + values2 = stdout2 if values is None: logger.error( 'Getting last two CSV entries of meter category' + ' {0} in {1} subdir failed'.format( meter_category, plugin_subdir)) + elif values2 is None: + logger.error( + 'Getting last CSV entries of meter category' + + ' {0} in {1} subdir failed'.format( + meter_category, plugin_subdir)) else: values = values.split(',') old_value = float(values[0]) - stdout2 = stdout2.split(',') - new_value = float(stdout2[0]) + values2 = values2.split(',') + new_value = float(values2[0]) metrics.append(( plugin_subdir, meter_category, old_value, new_value)) |