JohnGB
JohnGB

Reputation: 2016

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?

Upvotes: 1

Views: 842

Answers (2)

Guido van Rossum
Guido van Rossum

Reputation: 16890

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.

Upvotes: 4

synthesizerpatel
synthesizerpatel

Reputation: 28036

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

Upvotes: 1

Related Questions