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()