mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-25 15:05:49 +03:00
[GH-ISSUE #443] Suggestion: per project gantt graph displaying tasks durations #333
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#333
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @smknstd on GitHub (Oct 22, 2020).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/443
As healthcheck can store all tasks durations, it would be possible to display a gantt graph of all past tasks for a given timeline. I would love to check what happened on a given project in the last 24h hours for example. It could look something like this:
What do you think ?
@smknstd commented on GitHub (Nov 16, 2021):
Just found out cronitor seems to have something similar
@djarbz commented on GitHub (Aug 9, 2023):
This would be fantastic, I'm monitoring all of my Proxmox Backup Client runs and it would be awesome to see if any are overlapping and causing extra load/latency.
@cuu508 commented on GitHub (Nov 19, 2025):
Thanks, this is an interesting idea, but I'm not planning to work on this.
With the current data model, the duration calculation is somewhat expensive (durations are not stored per ping, instead they are calculated on demand by looking up the previous start event). Doing this for a longer timeframe and for many checks (there are accounts with 1000+ checks) would become quite expensive.
This could perhaps be a report that is run manually and infrequently. But I'm not sure if there's enough utility in this to warrant the dev work.