user_1357
user_1357

Reputation: 7940

API to access GAE services

I was wondering if there is an API to access GAE's services including logs, performance, tasks in the queue, something like bulkloader.

Upvotes: 0

Views: 106

Answers (2)

Dan Holevoet
Dan Holevoet

Reputation: 9183

Logging:

There's no out-of-the-box way to access App Engine logs outside of your App Engine app (which you can do with the LogService API). However, there are examples, such as log2bq that export your logs into BigQuery.

Performance:

Not sure what type of thing you're looking for here, but if the data is tracked via the logs, you can use the above example. If you can elaborate, perhaps I can better answer you.

Tasks:

You can use the TaskQueue REST API.

Upvotes: 1

Takahiro
Takahiro

Reputation: 1262

probably not, except there're several rest APIs to access queue tasks.

Upvotes: 0

Related Questions