Zo72
Zo72

Reputation: 15305

reading logs in google app engine

after launching your app on google app engine. you can use the 'logs' page in the admin console to see a how many requests were made, any http:// 404 errors etc.

It's hard to make sense of how many visitors you really got and or others.

Am I missing something here ? Can somebody tell me how to read logs on a google app engine.

Many Thanks

Upvotes: 2

Views: 613

Answers (3)

Nick Johnson
Nick Johnson

Reputation: 101139

You can download request logs in Apache log format using the appcfg tool.

Upvotes: 1

Marcos Placona
Marcos Placona

Reputation: 21720

In essence, google kinda expects you to use Google Analytics (being it their tool :-) )

What you could do however, is add some kind of loggin, where you'd simply write to a text-file, or call some kind of webservice that would do it for you.

Cheers

Upvotes: 0

rogeriopvl
rogeriopvl

Reputation: 54056

The logs are not meant to control site visits. For that you should use google analytics.

Upvotes: 3

Related Questions