1

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?

JohnGB
  • 1,906
  • 2
  • 20
  • 31

2 Answers2

4

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.

Guido van Rossum
  • 16,690
  • 3
  • 46
  • 49
1

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

synthesizerpatel
  • 27,321
  • 5
  • 74
  • 91