Yash Chauhan
Yash Chauhan
> Hello, try this: Go to your project in Vercel > Settings > Deployment Protection and set Vercel Authentication: Disabled. This worked for me, thanks!
@JohnRoesler sharing here what we discussed. I'll pick this up. I think we can add the following metrics at scheduler level, I’ve broken them down below: - Lifecycle: Scheduler (Started/Stopped/Shutdown)...
@JohnRoesler I've started working on the scheduler monitoring feature and have implemented the first part - scheduler lifecycle monitoring (SchedulerStarted/SchedulerStopped). I've raised a draft PR with the initial implementation #889...
@JohnRoesler I’d love to take this up! I’ve previously built a monitoring library for Go with an integrated dashboard [Monigo](https://github.com/iyashjayesh/monigo). If you’re open to it, we could create a separate...
@Streppel I’d appreciate your input here. Do you think a dashboard for jobs/schedules/logs would add value to the ecosystem?
@wisonlau We’ve pushed the initial version of gocron-ui! Please take a look and share your feedback whenever you get a chance. [https://github.com/go-co-op/gocron-ui](https://github.com/go-co-op/gocron-ui)
@hankji This is now available via the `SchedulerMonitor` interface added in #889 You can track: - `JobStarted` / `JobRunning` - to check if a job is in progress - `JobCompleted`...
Thanks for the report! I tried reproducing this. Seems like the issue is that `nextScheduled` isn't being updated atomically when multiple jobs run concurrently, it's a race condition in the...