I was wondering if there is an API to access GAE’s services including logs, performance, tasks in the queue, something like bulkloader.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.