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

849 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 answers

0
Guido van Rossum 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
synthesizerpatel On

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