Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
python-rrdtool を使用して、rrd ファイルからグラフを生成しています。デフォルトでは、CST タイム ゾーンでグラフを生成しています。デフォルトのタイム ゾーンを UTC に変更するにはどうすればよいですか。
TZ 環境変数を設定するとうまくいくことがわかりました。python-rrdtool を使用してこれを行うにはどうすればよいですか?
このチュートリアルに従って、 python-rrdtool を使用してグラフを作成しました
ありがとうございました
気にしないでください、私は解決策を見つけました、
Python を使用して TZ 変数を設定するには、rrd グラフを生成する Python スクリプトに以下の行を追加する必要があります -
import time, os os.environ['TZ'] = "Asia/Kolkata" # timezone you want to display graphs in time.tzset()