How can you change the timezone in AppEngine's AppStats?

856 Views Asked by At

I'm using Google AppEngine (python) and my application logs use UTC. My AppStats however are returning what looks like PST.

How can I change the timezone used for AppStats to UTC?

2

There are 2 best solutions below

0
On BEST ANSWER

In your appengine_config.py, set

appstats_TZOFFSET = 0

to display times in UTC. For other timezones set it to the number of seconds west of UTC.

0
On

http://timezones.appspot.com/ might be helpful to you.