-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Time regions: Add option for cron syntax to support complex schedules #99548
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7842024
to
6ca25a7
Compare
…ya/time-regions-cron
Since you've added the |
gelicia
approved these changes
Feb 20, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Checked with many time regions and points, reviewed the tests and they seem thorough as well. Great work on this!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
context: https://raintank-corp.slack.com/archives/C03KVDHTWAH/p1737909843220739
users sometimes want to define time regions that are not one daily time range repeated for a specific day or every day.
the existing config is rather limited, and requires many separate annotation "queries" just to create a "weekdays only" schedule since we don't offer multi-day selection.
before:
one option was to implement a multi-day selector, but why stop there? 😈
this PR opens up many possibilities by adding support for cron syntax, which allows for quite complex schedules to be defined concisely. allowing for things like "weekdays 9-5" to be defined as a single annotation. the implementation uses Hexagon/croner, a tiny, zero-dependency cron parsing and eval lib.
time-regions-cron.json
This turned into a rather large rewrite of 7 year old, unmaintained legacy code. Because of this, a lot was removed, replaced, and refactored.
Previously:
Many of the existing tests relied on the quirks above, so they had to be removed and replaced.
Now:
We have an existing gdev dashboard with some time region queries that continues to look the same:
http://localhost:3000/d/XMjIZPmik/panel-tests-graph-time-regions?orgId=1&from=2023-03-01T06:00:00.000Z&to=2023-04-01T05:00:00.000Z&scenes&timezone=browser
in the future we can consider adding a nice UI for constructing common cron expressions, some existing examples from google / microsoft:
TODO:
croner
already supports internally)croner
to calculate time regions, removing our custom-made thing (and its additional util fns):grafana/public/app/core/utils/timeRegions.ts
Lines 20 to 138 in d16f231