本文整理汇总了PHP中phodevi::sensor_object_identifier方法的典型用法代码示例。如果您正苦于以下问题:PHP phodevi::sensor_object_identifier方法的具体用法?PHP phodevi::sensor_object_identifier怎么用?PHP phodevi::sensor_object_identifier使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类phodevi
的用法示例。
在下文中一共展示了phodevi::sensor_object_identifier方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: process_summary_results
private static function process_summary_results(&$sensor, &$test_run_manager)
{
$sensor_results = self::parse_monitor_log('logs/' . phodevi::sensor_object_identifier($sensor));
pts_module::remove_file('logs/' . phodevi::sensor_object_identifier($sensor));
if (count($sensor_results) > 2 && self::$monitor_test_count > 1) {
$test_profile = new pts_test_profile();
$test_result = new pts_test_result($test_profile);
$test_result->test_profile->set_test_title(phodevi::sensor_object_name($sensor) . ' Monitor');
$test_result->test_profile->set_identifier(null);
$test_result->test_profile->set_version(null);
$test_result->test_profile->set_result_proportion(null);
$test_result->test_profile->set_display_format('LINE_GRAPH');
$test_result->test_profile->set_result_scale(phodevi::read_sensor_object_unit($sensor));
$test_result->set_used_arguments_description('Phoronix Test Suite System Monitoring');
$test_result->set_used_arguments(phodevi::sensor_object_identifier($sensor));
$test_result->test_result_buffer = new pts_test_result_buffer();
$test_result->test_result_buffer->add_test_result(self::$result_identifier, implode(',', $sensor_results), implode(',', $sensor_results), implode(',', $sensor_results), implode(',', $sensor_results));
$test_run_manager->result_file->add_result($test_result);
}
}