python 实现提取某个索引中某个时间段的数据方法

Tanisha ·
更新时间:2024-09-20
· 551 次阅读

如下所示:

from elasticsearch import Elasticsearch import datetime import time import dateutil.parser class App(object): def __init__(self): pass def _es_conn(self): es = Elasticsearch() return es def get_data(self, day,start,end): index_ = "gather-apk-20180330" query_dsl = { "size": 10000, "query": { "bool": { "must": [ {"range": { "receiveTime": { "gte": start.strftime('%Y-%m-%d %H:%M:%S'), "lte": end.strftime('%Y-%m-%d %H:%M:%S'), "format": "yyyy-MM-dd HH:mm:SS", "time_zone": "+08:00" } }}, { "term": { "obd2_localnet_id": { "value": "101000" } } }, { "term": { "obd2_substation_name": { "value": "石羊支局" } } } ] } }, "_source": ["mac", "iptvAccount", "obd2_substation_name", "obd2_company_name", "obd2_grid_name", "receiveTime","streamBreak","kaNum"] } rs = self._es_conn().search( index=index_, body=query_dsl ) if __name__ == '__main__': day = datetime.datetime.now() # the_day = day.strftime('%Y%m%d') start = datetime.datetime.strptime('20180330 09:53:00','%Y%m%d %H:%M:%S') end = datetime.datetime.strptime('20180330 15:44:00','%Y%m%d %H:%M:%S') app = App() app.get_data(day,start,end)

以上这篇python 实现提取某个索引中某个时间段的数据方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持软件开发网。

您可能感兴趣的文章:Python实现DDos攻击实例详解Python实现SQL注入检测插件实例代码python实现一个简单的udp通信的示例代码Python读取指定日期邮件的实例Python 利用切片从列表中取出一部分使用的方法Python的条件表达式和lambda表达式实例使用Python向C语言的链接库传递数组、结构体、指针类型的数据Python使用ctypes调用C/C++的方法对python中list的拷贝与numpy的array的拷贝详解Python告诉你木马程序的键盘记录原理



时间段 方法 数据 索引 Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号