pythongoogle-app-enginetimezoneappstats

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


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?


Solution

  • 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.