Monitoring cron operation in google app engine in console?

This may be a stupid question, but I just cannot find the cron taskbar, I have an application in java, and I need to update the data every day, so I create this cron.xml inside WEB- INF:

<?xml version="1.0" encoding="UTF-8"?> <cronentries> <cron> <url>/refreshdata</url> <description>Daily data refresh cron task </description> <schedule>every day 05:00</schedule> </cron> </cronentries> 

I deployed it, but it doesnโ€™t work, and I canโ€™t find the cron job panel in the console to control it or even check if GAE recognizes it ...

The documentation says: "(You can check the Cron job you just deployed by clicking Cron Jobs in the left navigation bar.) Http://i.stack.imgur.com/1niVt.png "

but it no longer exists, the gae console interface has been changed, where is it now? I tried in magazines without success

Is this something wrong with my .xml?

Any help would be appreciated, thanks.

+5
source share
3 answers

If you use the new console for your projects in the application, then it will look like once you selected a project to view from https://console.developers.google.com/project using your google account.

Hope this helps!

+11
source

You can find it in the "Task Queues" section, you should see Cron as a tab in this view

0
source

In the Cloud Cloud Developer Console, it should be available at this location:

https://console.developers.google.com/project/your-project-id/appengine/taskqueues?tab=CRON

0
source

Source: https://habr.com/ru/post/1207178/


All Articles