本文整理汇总了Python中opserver.opserver_util.OpServerUtils.get_url_http方法的典型用法代码示例。如果您正苦于以下问题:Python OpServerUtils.get_url_http方法的具体用法?Python OpServerUtils.get_url_http怎么用?Python OpServerUtils.get_url_http使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类opserver.opserver_util.OpServerUtils
的用法示例。
在下文中一共展示了OpServerUtils.get_url_http方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from opserver.opserver_util import OpServerUtils [as 别名]
# 或者: from opserver.opserver_util.OpServerUtils import get_url_http [as 别名]
def main():
querier = StatQuerier()
if querier.parse_args() != 0:
return
tab_url = "http://" + querier._args.opserver_ip + ":" + querier._args.opserver_port +\
"/analytics/table/StatTable." + querier._args.table
schematxt = OpServerUtils.get_url_http(tab_url + "/schema")
schema = json.loads(schematxt.text)['columns']
if len(querier._args.select)==0:
for pp in schema:
if pp['index']:
valuetxt = OpServerUtils.get_url_http(tab_url + "/column-values/" + pp['name'])
print "%s : %s %s" % (pp['name'],pp['datatype'], valuetxt.text)
else:
print "%s : %s" % (pp['name'],pp['datatype'])
else:
result = querier.query(schema)
querier.display(result)