本文整理汇总了Python中splunk.Intersplunk.isGetInfo方法的典型用法代码示例。如果您正苦于以下问题:Python Intersplunk.isGetInfo方法的具体用法?Python Intersplunk.isGetInfo怎么用?Python Intersplunk.isGetInfo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类splunk.Intersplunk
的用法示例。
在下文中一共展示了Intersplunk.isGetInfo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: cmp
# 需要导入模块: from splunk import Intersplunk [as 别名]
# 或者: from splunk.Intersplunk import isGetInfo [as 别名]
results.sort(lambda x,y: cmp(x['_time'], y['_time']))
si.outputResults(results, {}, fields=field_order)
except Exception, e2:
stack2 = traceback.format_exc()
si.generateErrorResults("Error '%s'. %s" % (e2, stack2))
def usage():
si.generateErrorResults(" 'timeunit' argument required, such as s (seconds), h (hours), d (days), w (weeks), or y (years). Optionally prefix with a number: 600s (10 minutes), 2w (2 weeks). Optionally add another argument to specify the time-range label: series=[short,exact,relative]")
exit(-1)
if __name__ == '__main__':
try:
series_mode = 'relative'
(isgetinfo, sys.argv) = si.isGetInfo(sys.argv)
argc = len(sys.argv)
if argc != 2 and argc != 3: usage()
if argc == 3:
arg = sys.argv[2]
match = re.search("(?i)series=(short|exact|relative)", sys.argv[2])
if match == None: usage()
series_mode = match.group(1)
if isgetinfo:
# outputInfo(streaming, generating, retevs, reqsop, preop, timeorder=False, clear_req_fields=False, req_fields = None)
si.outputInfo(False, False, False, True, "addinfo", timeorder=False)
results, dummyresults, settings = si.getOrganizedResults()
run(sys.argv[1], series_mode, results)