-1

Is there any way I can view my background job start and finish time on Parse Data Browser?

LKH
  • 287
  • 2
  • 3
  • 11

1 Answers1

0

As far as I know, parse dashboard does not provide this kind of information. However, you can use the job itself to keep the start and finish time of the job. What I mean, you can use the moment js library to get the start time and finish time when the job ends you can save these information to parse database (to JobLog table). Hope this helps.

Regards.

kingspeech
  • 1,776
  • 2
  • 14
  • 24
  • Your welcome. Also do not forget the job has time limit as well. (15 minutes). If your operation exceeds this time limit, then your job is truncated. – kingspeech Jun 03 '15 at 07:18