0

以下は、Pythonスクリプトからelasticsearchにデータをプッシュしようとしている私のコードです。データは正常に挿入されていますが、1 つの小さな問題は、kibana を使用すると、IST 形式ではなく UTC 形式で時間が表示されることです。これを修正するにはどうすればよいですか。

import time
from elasticsearch import Elasticsearch

es = Elasticsearch(['122.15.1.12'])
port=9200

ltime = time.strftime('%Y-%m-%dT%H:%M:%S')

es.index(index='xdist', doc_type='threads', body={
'supplier': qantas[d],
'date': ltime,
'threadcount': ActiveThreads
                })
4

0 に答える 0