本文整理汇总了Python中cache.CacheHelper.allnodestats方法的典型用法代码示例。如果您正苦于以下问题:Python CacheHelper.allnodestats方法的具体用法?Python CacheHelper.allnodestats怎么用?Python CacheHelper.allnodestats使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cache.CacheHelper
的用法示例。
在下文中一共展示了CacheHelper.allnodestats方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: generate_node_stats_report
# 需要导入模块: from cache import CacheHelper [as 别名]
# 或者: from cache.CacheHelper import allnodestats [as 别名]
def generate_node_stats_report():
allnodestats = CacheHelper.allnodestats()
if len(allnodestats) > 0:
# print current time at top of each report
# TODO: add active tasks at time of report generation
ts = time.localtime()
ts_string = "%s/%s/%s %s:%s:%s" %\
(ts.tm_year, ts.tm_mon, ts.tm_mday, ts.tm_hour, ts.tm_min, ts.tm_sec)
print_separator()
logger.error("\tSTAT REPORT: (%s)" % ts_string)
for node_stats in allnodestats:
calculate_node_stat_results(node_stats)
if len(node_stats.results) > 0:
print_node_results(node_stats)
logger.error("\tEND OF REPORT: (%s)" % ts_string)
print_separator()
new_line()
示例2: setPhaseForStats
# 需要导入模块: from cache import CacheHelper [as 别名]
# 或者: from cache.CacheHelper import allnodestats [as 别名]
def setPhaseForStats(phase_name):
allnodestats = CacheHelper.allnodestats()
if len(allnodestats) > 0:
for node_stats in allnodestats:
node_stats.phase = phase_name